文章来源:http://tutorials.jenkov.com/html4/lists.html
随便的一段文字用:<p></p>
1、ul - 无顺序列表类型
<ul type="square"> <ul type="circle"> <ul type="disc"> <li>List Item 1</li> <li>List Item 2</li> <li>List Item etc.</li> </ul>
2、ol - 有顺序列表
<ol type="a"> <ol type="i"> <ol type="1">
<li>List item</li> <li>List item</li> <li>List item</li> </ol>
3、<dl>:整个标志,<dt>:是一个小标题 <dd>:内容
主题和内容随便组合,只要两者不换位置即可,字典里的解释最适合这种列表。
(1) 一个主题,两个内容
<dl> <dt> Authors <dd> John <dd> Luke <dt> Editor <dd> Frank </dl>
(2)两个主题,对应一个内容
<dl> <dt lang="en-US"> <dfn>color</dfn> </dt> <dt lang="en-GB"> <dfn>colour</dfn> </dt> <dd> A sensation which (in humans) derives from the ability of the fine structure of the eye to distinguish three differently filtered analyses of a view. </dd> </dl>
(3)一个主题+一个内容,两个主题+两个内容
<dl> <dt> Last modified time </dt> <dd> 2004-12-23T23:33Z </dd> <dt> Recommended update interval </dt> <dd> 60s </dd> <dt> Authors </dt> <dt> Editors </dt> <dd> Robert Rothman </dd> <dd> Daniel Jackson </dd> </dl>