CSS中的計數器
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了。
這個特性看起來簡單,但是如果我們能夠合理的使用,效果還是非常好的。
參考資料:
相關文章
- css計數器CSS
- 使用 CSS 計數器CSS
- CSS計數器的趣味時光CSS
- CSS 計數器簡介CSS
- 深入理解CSS計數器CSS
- CSS 計數器的妙用:數字遞增動效CSS
- 使用CSS計數器美化數字有序列表CSS
- 如何讓CSS計數器支援小數的動態變化?CSS
- 使用CSS計數器美化有序列表CSS
- CSS計數器(序列數字字元自動遞增)詳解CSS字元
- Hadoop中自定義計數器Hadoop
- 用CSS來計數CSS
- Jmeter——迴圈控制器中實現Counter計數器的次數重置JMeter
- 強大的CSS: 使用“變數種子計數器”擴充套件動畫更多可能性CSS變數套件動畫
- HTML中CSS引用:選擇器的使用HTMLCSS
- CSS中的五大選擇器CSS
- CSS 前處理器中的迴圈CSS
- 計數器
- css中:not()選擇器和jQuery中.not()方法CSSjQuery
- js中windows的函式(隨機數,計時器的實現)JSWindows函式隨機
- mapreduce的程式設計模型,計數器程式設計模型
- css選擇器位置和數量技巧CSS
- 自定義計數器小技巧!CSS 實現長按點贊累加動畫CSS動畫
- CSS中的“大白”——CSS 動畫CSS動畫
- [譯] 瀏覽器中 CSS 支援指南瀏覽器CSS
- CSS樣式中的後代選擇器和子代選擇器CSS
- CSS樣式中的通用選擇器和偽類選擇器CSS
- 1(4)計數器
- css中的一些選擇器的用法總結CSS
- css3 nth-child() 選擇器 (遍歷選擇器的奇偶數)CSSS3
- Flutter倒數計時/計時器的實現Flutter
- Java中計算整數中唯一數字數量的3種方法Java
- CSS中的BFCCSS
- 聊聊程式設計中的 “魔數”程式設計
- 【iCore1S 雙核心板_FPGA】例程三:計數器實驗——計數器的使用FPGA
- CSS 變數,你的下一個設計利器(Part 1)CSS變數
- css程式碼中的加號(+)相鄰選擇器的作用CSS
- css選擇器中的加號+的作用簡單介紹CSS