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
- 計數器中的硬體
- Jmeter——迴圈控制器中實現Counter計數器的次數重置JMeter
- 你有了解css計數器(序列數字字元自動遞增)嗎?如何透過css的content屬性實現呢?CSS字元
- HTML中CSS引用:選擇器的使用HTMLCSS
- CSS中的五大選擇器CSS
- 強大的CSS: 使用“變數種子計數器”擴充套件動畫更多可能性CSS變數套件動畫
- 計數器
- css中:not()選擇器和jQuery中.not()方法CSSjQuery
- mapreduce的程式設計模型,計數器程式設計模型
- 精心設計的 GNN 只是“計數器”?GNN
- js中windows的函式(隨機數,計時器的實現)JSWindows函式隨機
- 在VsCode中幫你自動完成CSS變數的外掛:CSS Var CompleteVSCodeCSS變數
- [譯] 瀏覽器中 CSS 支援指南瀏覽器CSS
- 自定義計數器小技巧!CSS 實現長按點贊累加動畫CSS動畫
- CSS中的“大白”——CSS 動畫CSS動畫
- css3 nth-child() 選擇器 (遍歷選擇器的奇偶數)CSSS3
- CSS 變數,你的下一個設計利器(Part 1)CSS變數
- CSS中的BFCCSS
- 【CSS】我如何解釋CSS變數的好CSS變數
- css超出部分隱藏,js倒數計時CSSJS
- Flutter倒數計時/計時器的實現Flutter
- 1(4)計數器
- 聊聊程式設計中的 “魔數”程式設計
- Java中計算整數中唯一數字數量的3種方法Java
- CSS中重要的BFCCSS
- AngularVueReact框架中的CSSAngularVueReact框架CSS
- 理解 CSS 中的 BFCCSS
- (八)定時計數器
- 數位電路中的觸發器觸發器
- Android鬼點子 Q彈的計數器Android
- spark的計算器與廣播變數Spark變數
- 多個element-ui 計數器的坑UI