码迷,mamicode.com
首页 > Web开发 > 详细

html之ol标签

时间:2016-11-30 13:42:01      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:style   body   html5   有序列表   eve   view   class   类型   play   

有序列表,请使用 CSS 来定义列表的类型。

 通常和li配对使用

HTML5新属性:

  compact

  reversed:降序

  start:有序列表的起始值

  type:在列表中使用标记类型(1,A,a,I,i)

 

代码示例:

技术分享
<body>
    <ol type="i">
        <li>咖啡</li>
        <li>牛奶</li>
        <li>茶</li>
        <li>咖啡</li>
        <li>牛奶</li>
        <li>茶</li>
    </ol>

    <ol start="20">
        <li>咖啡</li>
        <li>牛奶</li>
        <li>茶</li>
    </ol>

    <ol start="20" reversed="reversed">
        <li>咖啡</li>
        <li>牛奶</li>
        <li>茶</li>
    </ol>
</body>
View Code

效果图:

技术分享

 

html之ol标签

标签:style   body   html5   有序列表   eve   view   class   类型   play   

原文地址:http://www.cnblogs.com/kongzhagen/p/6117064.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!