定义列表
定义列表(Definition List):DL 元素、 DT 元素和DD 元素 定义列表由一组词语和响应的定义组成,浏览器通常将定义列表中的词语居左显示,而将相 应的定义按照...
定义表
列表项 定义表(Definition list): 列表项
定义清单
...st 清单用于列举事实,常用的清单有3 种格式,即无序清单(unordered List),有序清单(ordered list)和定义清单(definition list) 无序清单(ul) 无序清单用(ul)开始,每一个清单条目用引导,最后是,注意清单条目不需要结尾链接签 。
自定义列表
...页内出现新词汇、术语时,为了给访问者一个明确的提示,需要对它们进行定义和说明,此时用户可以使用自定义列表(Definition List)。
An HTML element is an individual component of an HTML document or web page, once this has been parsed into the Document Object Model. HTML is composed of a tree of HTML elements and other nodes, such as text nodes. Each element can have HTML attributes specified. Elements can also have content, including other elements and text. HTML elements represent semantics, or meaning. For example, the title element represents the title of the document.In the HTML syntax, most elements are written with a start tag and an end tag, with the content in between. An HTML tag is composed of the name of the element, surrounded by angle brackets. An end tag also has a slash after the opening angle bracket, to distinguish it from the start tag. For example, a paragraph, which is represented by the p element, would be written asHowever, not all of these elements require the end tag, or even the start tag, to be present. Some elements, the so-called void elements, do not have an end tag. A typical example is the br element, which represents a significant line break, such as in a poem or an address. A void element's behaviour is predefined, and it can not contain any content or other elements. For example, the address of the dentist in the movie Finding Nemo would be written asWhen using an XHTML DTD, it is required to open and close the element with a single tag. To specify that it is a void element, a "/" is included at the end of the tag (not to be confused with the "/" at the beginning of a closing tag).HTML attributes are specified inside the start tag. For example, the abbr element, which represents an abbreviation, expects a title attribute within its opening tag. This would be written as