HTML <ol> 标签
示例
两个不同的有序列表(第一个列表从 1 开始,第二个列表从 50 开始)
<ol>
<li>咖啡</li>
<li>茶</li>
<li>牛奶</li>
</ol>
<ol start="50">
<li>咖啡</li>
<li>茶</li>
<li>牛奶</li>
</ol>
自己尝试 »
下面有更多“自己尝试”示例。
定义和用法
The <ol>
标签定义了一个有序列表。有序列表可以是数字或字母的。
The <li> 标签用于定义每个列表项。
提示: 使用 CSS 样式列表.
提示: 对于无序列表,使用 <ul> 标签。
浏览器支持
元素 | |||||
---|---|---|---|---|---|
<ol> | 是 | 是 | 是 | 是 | 是 |
属性
属性 | 值 | 描述 |
---|---|---|
reversed | reversed | 指定列表顺序应颠倒(9,8,7...) |
start | 数字 | 指定有序列表的起始值 |
type | 1 A a I i |
指定要在列表中使用的标记类型 |
全局属性
The <ol>
标签还支持 HTML 中的全局属性.
事件属性
The <ol>
标签还支持 HTML 中的事件属性.
更多示例
示例
设置不同的列表类型(使用 CSS)
<ol style="list-style-type:upper-roman">
<li>咖啡</li>
<li>茶</li>
<li>牛奶</li>
</ol>
<ol style="list-style-type:lower-alpha">
<li>咖啡</li>
<li>茶</li>
<li>牛奶</li>
</ol>
自己尝试 »
示例
显示使用 CSS 可用的所有不同列表类型
<style>
ol.a {list-style-type: armenian;}
ol.b {list-style-type: cjk-ideographic;}
ol.c {list-style-type: decimal;}
ol.d {list-style-type: decimal-leading-zero;}
ol.e {list-style-type: georgian;}
ol.f {list-style-type: hebrew;}
ol.g {list-style-type: hiragana;}
ol.h {list-style-type: hiragana-iroha;}
ol.i {list-style-type: katakana;}
ol.j {list-style-type: katakana-iroha;}
ol.k {list-style-type: lower-alpha;}
ol.l {list-style-type: lower-greek;}
ol.m {list-style-type: lower-latin;}
ol.n {list-style-type: lower-roman;}
ol.o {list-style-type: upper-alpha;}
ol.p {list-style-type: upper-latin;}
ol.q {list-style-type: upper-roman;}
ol.r {list-style-type: none;}
ol.s {list-style-type: inherit;}
</style>
自己尝试 »
示例
减少和扩展列表中的行高(使用 CSS)
<ol style="line-height:80%">
<li>咖啡</li>
<li>茶</li>
<li>牛奶</li>
</ol>
<ol style="line-height:180%">
<li>咖啡</li>
<li>茶</li>
<li>牛奶</li>
</ol>
自己尝试 »
示例
在有序列表中嵌套无序列表
<ol>
<li>咖啡</li>
<li>茶
<ul>
<li>红茶</li>
<li>绿茶</li>
</ul>
</li>
<li>牛奶</li>
</ol>
自己尝试 »
相关页面
HTML 教程:HTML 列表
HTML DOM 参考:Ol 对象
CSS 教程:样式列表
默认 CSS 设置
大多数浏览器将使用以下默认值显示 <ol>
元素
示例
ol {
display: block;
list-style-type: decimal;
margin-top: 1em;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
padding-left: 40px;
}
自己尝试 »