当前位置

网站首页> 电脑教程 > 网页设计 > CSS+DIV > 浏览文章

CSS中使用counter()在列表中自动添加序号

作者:小梦 来源: 网络 时间: 2024-08-03 阅读:

   在CSS 2.1在就已经支持的功能是counter(),使用它,你能方便的在页面标题,区块和其它各种连续出现的页面内容上添加序号。有了它,你就不必限制于只能使用

    来实现这个效果,你可以更灵活的在页面上使用自定义数字序列。

      关键就是它真的很简单:在:before伪类里的content属性加入counter():

      body {

      counter-reset: heading;

      }

      h4:before {

      counter-increment: heading;

      content: "Heading #" counter(heading) ".";

      }

热点阅读

网友最爱