CSS中的计数器

简介: CSS的规范中,有一个很奇特的特性,支持计数器的功能。   先来看下如何使用:      Place the flour in a large bowl, make a well in the centre and pour in the milk and eggs.

CSS的规范中,有一个很奇特的特性,支持计数器的功能。

 
先来看下如何使用:

<section>

     <p>Place the flour in a large bowl, make a well in the centre and pour in the milk and eggs. Give the liquid mixture a quick whisk before incorporating the flour. Continue to whisk until you have a smooth batter.</p>
     <p>Now add 1 tbsp vegetable oil and whisk thoroughly.</p>
     <p>Take a crêpe pan, or large frying pan, dip some kitchen roll in the oil and carefully wipe the inside of the pan. Heat the pan over a medium heat for one minute.</p>
     <p>Add just under a ladleful of batter to the pan and immediately start swirling it around the pan to produce a nice even layer.</p>
     <p>Cook the pancake for approximately 30-40 seconds. Use a palette knife to lift the pancake carefully to look at the underside to check it is golden-brown before turning over. Cook the other side for approx 30-40 seconds and transfer to a serving plate.</p>
</section>
 
这段代码表示了做一件事情的顺序,现在我们可以使用CSS的计数器来给这些步骤标注顺序。
 
下面的代码:

     body {

          counter-reset: steps;
     }
 
     p{
          color: #242424;
          font-size: 16px;
          line-height: 20px;
     }
     p:before {
          counter-increment: steps;
          content: "Step " counter(steps) ": ";
          font-weight: bold;
          font-size: 18px;
     }
在浏览一下看看效果如何?每行之前都有了一个步骤的数字标注,很神奇吧。
 
这个属性自CSS2.1起开始写入规范,目前大多数主流的浏览器都可以支持,唯一不支持的就是IE7了。
 
这个特性看起来简单,但是如果我们能够合理的使用,效果还是非常好的。
 
参考资料:

 

相关文章
|
4月前
|
Web App开发 前端开发 JavaScript
css【详解】—— content属性(含css计数器)
css【详解】—— content属性(含css计数器)
40 3
|
6月前
|
前端开发
编程笔记 html5&css&js 058 css计数器
编程笔记 html5&css&js 058 css计数器
|
6月前
|
前端开发 算法 语音技术
【正在完善】CSS 计数器详解与巧用
【正在完善】CSS 计数器详解与巧用
150 0
|
11月前
|
存储 前端开发 JavaScript
使用 JavaScript 和 CSS 的简单字符计数器
使用 JavaScript 和 CSS 的简单字符计数器
85 0
|
前端开发 JavaScript
你可能不知道的 CSS 计数器
CSS 里面的伪元素其实是非常好用的,但是经常容易被大家忽略,伪元素里面常用到的 content 属性,可能现在很多人仅仅以为 content 属性的值只支持字符串,除了字符串外常用到的还有 uri、counter ,今天所要介绍的就是 conter(计数器)。
115 0
你可能不知道的 CSS 计数器
|
前端开发
CSS 计数器实现九宫格自动提示超出数量
CSS 计数器实现九宫格自动提示超出数量
CSS 计数器实现九宫格自动提示超出数量
|
3月前
|
前端开发
2s 利用 HTML+css动画实现企业官网效果
2s 利用 HTML+css动画实现企业官网效果
HTML+CSS 实现通用的企业官网页面(记得收藏)
HTML+CSS 实现通用的企业官网页面(记得收藏)
|
1月前
|
前端开发 JavaScript 搜索推荐
打造个人博客网站:从零开始的HTML和CSS之旅
【9月更文挑战第32天】在这个数字化的时代,拥有一个个人博客不仅是展示自我的平台,也是技术交流的桥梁。本文将引导初学者理解并实现一个简单的个人博客网站的搭建,涵盖HTML的基础结构、CSS样式的美化技巧以及如何将两者结合来制作一个完整的网页。通过这篇文章,你将学会如何从零开始构建自己的网络空间,并在互联网世界留下你的足迹。
|
7天前
|
JSON 移动开发 数据格式
html5+css3+js移动端带歌词音乐播放器代码
音乐播放器特效是一款html5+css3+js制作的手机移动端音乐播放器代码,带歌词显示。包括支持单曲循环,歌词显示,歌曲搜索,音量控制,列表循环等功能。利用json获取音乐歌单和歌词,基于html5 audio属性手机音乐播放器代码。
45 6