十四 定义列表 Definition Lists
前面讲述了无序列表和有序列表,但一些像Peter Cushing's Doctor,经常忘记定义列表。这也许是因为它们和无序列表、有序列表比起来比较特殊而且没有用处。但一些列表条件和表述(像术语表),就必须使用定义列表。
dl
元素像ul
和ol
元素,建立列表,不过比它们两个多了一个dt
元素用来definition term定义条件,接下来的dd
定义表述definition description。
一个dt
不仅仅只跟一个dd
,互相之间可以有好多个。例如,如果许多词语有相同的意思,那么有许多dt
跟一个dd
。如果一个词语拥有很多不同意思,那么一个dt
跟了好多dd
。
<h1>Some random glossary thing</h1><dl><dt>HTML</dt><dd>Abbreviation for HyperText Markup Language - a language used to make web pages.</dd><dt>Dog</dt><dd>Any carnivorous animal belonging to the family Canidae.</dd><dd>The domesticated sub-species of the family Canidae, Canis lupus familiaris.</dd><dt>Moo juice</dt><dt>Cat beer</dt><dt>Milk</dt><dd>A white liquid produced by cows and used for human consumption.</dd></dl>