The <dl> tag defines a definition list that defines the entries in the list by using the <dt> tag (definition title, defining the caption) and <dd> Description ", definition description) created. <dt> gives the term name,<dd> tag gives the definition of the term.
That is, <dt> is used to create top-level items in the list,<dd> used to create the lowest-level items in the list,<dt> and <dd> must be placed between the <dl></dl> flag pairs.
<dl>
<dt> We're doing a list title </dt>
<dd> We are doing a list </dd>
<dd> We are doing a list </dd>
<dd> We are doing a list </dd>
<dd> We are doing a list </dd>
</dl>
Http://zhidao.baidu.com/link?url=NYjIKhIhh6L0ByHivj1Pea9cENY4EZkqinB2gTPM5iM9zeNjRlIyT3WOr7Un_ynvd8Bo8tojaMRZnExEifVIxq
DL DT DD is a set of combination labels, using the DT DD outermost layer must use the DL package
- <html>
- <body>
- <H1> A definition list:</H1>
- <dl>
- <DT>css website </dt>
- <dd> URL is www.divcss5.com</dd>
- <DT>div CSS website </dt>
- <dd> URL is www.divcss5.com</dd>
- <DT>div+css website </dt>
- <dd> URL is www.divcss5.com</dd>
- </dl>
- </body>
- </html>
Http://www.divcss5.com/html/h88.shtml#no1
DL DT DD Label