ol 有序列表
示例:
<ol>
<li>刘伟 www.sphard.com</li>
<li>刘伟 www.sphard.com</li>
<li>刘伟 www.sphard.com</li>
<li>刘伟 www.sphard.com</li>
<li>刘伟 www.sphard.com</li>
</ol>
效果:
type 属性:
<ol>
<li>刘伟 www.sphard.com</li>
<li type="1">刘伟 www.sphard.com</li>
<li type="a">刘伟 www.sphard.com</li>
<li type="A">刘伟 www.sphard.com</li>
<li type="i">刘伟 www.sphard.com</li>
<li type="I">刘伟 www.sphard.com</li>
</ol>
效果:
start 属性:
<ol start="6">
<li>刘伟 www.sphard.com</li>
<li>刘伟 www.sphard.com</li>
<li>刘伟 www.sphard.com</li>
<li>刘伟 www.sphard.com</li>
<li>刘伟 www.sphard.com</li>
</ol>
在start
属性中,不论列表的type
属性是数字、英文还是罗马字,start
属性只能是数字。
效果: