菜单
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

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;
}
自己动手试一试 »


×

联系销售

如果您想将 W3Schools 服务用于教育机构、团队或企业,请发送电子邮件给我们
sales@w3schools.com

报告错误

如果您想报告错误,或想提出建议,请发送电子邮件给我们
help@w3schools.com

W3Schools 经过优化,旨在方便学习和培训。示例可能经过简化,以提高阅读和学习体验。教程、参考资料和示例会不断审查,以避免错误,但我们无法保证所有内容的完全正确性。使用 W3Schools 即表示您已阅读并接受我们的使用条款Cookie 和隐私政策

版权所有 1999-2024 Refsnes Data。保留所有权利。W3Schools 由 W3.CSS 提供支持