HTML <ol> 標籤
示例
兩個不同的有序列表(第一個列表從 1 開始,第二個列表從 50 開始)
<ol>
<li>咖啡</li>
<li>茶</li>
<li>牛奶</li>
</ol>
<ol start="50">
<li>咖啡</li>
<li>茶</li>
<li>牛奶</li>
</ol>
自己動手試一試 »
更多“自己嘗試”的例子見下文。
定義和用法
The <ol>
tag defines an ordered list. An ordered list can be numerical or alphabetical.
The <li> tag is used to define each list item.
提示:使用 CSS 樣式列表。
提示:對於無序列表,請使用 <ul> 標籤。
瀏覽器支援
元素 | |||||
---|---|---|---|---|---|
<ol> | 是 | 是 | 是 | 是 | 是 |
屬性
Attribute | 值 | 描述 |
---|---|---|
reversed | reversed | Specifies that the list order should be reversed (9,8,7...) |
start | 數字 | Specifies the start value of an ordered list |
type | 1 A a I i |
Specifies the kind of marker to use in the list |
全域性屬性
The <ol>
tag also supports the Global Attributes in HTML.
事件屬性
The <ol>
tag also supports the Event Attributes in 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>
自己動手試一試 »
示例
Display all the different list types available with 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>
自己動手試一試 »
示例
Reduce and expand line-height in lists (with 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>
自己動手試一試 »
示例
Nest an unordered list inside an ordered list
<ol>
<li>咖啡</li>
<li>茶
<ul>
<li>紅茶</li>
<li>綠茶</li>
</ul>
</li>
<li>牛奶</li>
</ol>
自己動手試一試 »
相關頁面
HTML 教程:HTML 列表
HTML DOM 參考:Ol 物件
CSS 教程:樣式列表
預設 CSS 設定
Most browsers will display the <ol>
element with the following default values
示例
ol {
display: block;
list-style-type: decimal;
margin-top: 1em;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
padding-left: 40px;
}
自己動手試一試 »