CSS3 counter()
是一個函式,主要配合content一起使用。
使用counter()來呼叫定義好的計數器識別符號。
語法結構:
[CSS] 純文字檢視 複製程式碼counter(<identifier>,list-style-type)
引數解析:
(1).<identifier>:counter-increment定義的屬性值<identifier>,用來告訴文件插入的計數器識別符號名稱是什麼。
(2).list-style-type:設定計數器的風格,有點類似於list-style-type。預設情況下,取值為十制,但你也可以重置這個樣式風格,比如upper-roman或者upper-alpha等。
此引數值列表如下:
[CSS] 純文字檢視 複製程式碼disc circle square decimal decimal-leading-zero lower-roman upper-roman lower-greek lower-latin upper-latin armenian georgian lower-alpha upper-alpha none inherit
瀏覽器支援:
(1).IE瀏覽器支援此屬性。
(2).谷歌瀏覽器支援此屬性。
(3).火狐瀏覽器支援此屬性。
(4).opera瀏覽器支援此屬性。
(5).safria瀏覽器支援此屬性。
特別說明:只有IE7或者IE7以下的瀏覽器不支援。
繼承性:
無繼承性。
例項程式碼:
[HTML] 純文字檢視 複製程式碼<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style type="text/css"> ul li{list-style-type:none;} ul li{counter-increment:antzone;} ul li:before{ content:counter(antzone)"."; color:red; } </style> </head> <body> <ul> <li>螞蟻部落歡迎您</li> <li>螞蟻部落歡迎您</li> <li>螞蟻部落歡迎您</li> <li>螞蟻部落歡迎您</li> </ul> </body> </html>
相關文章
- CSS3 counter-resetCSSS3
- counter-reset、counter()和counter-increment用法REM
- B - Ticket Counter
- Decade counter
- CSS裡的CounterCSS
- Slow decade counter
- Counter 1-12
- Counter 1000
- sql_slave_skip_counterSQL
- Decade counter againAI
- Counter with period 1000
- 【Python】計數器 CounterPython
- python - Counter簡單使用Python
- Four-bit binary counter
- python—collections模組(defaultdict、Counter、OrderedDict)Python
- Python中Collections.counter用法Python
- sql_slave_skip_counter說明SQL
- python學習:counter計數Python
- SET GLOBAL SQL_SLAVE_SKIP_COUNTERSQL
- 4-bit shift register and down counter
- Python計數:defaultdict和CounterPython
- Python中的collections.Counter模組Python
- 如何使用python計數模組counter?Python
- LeetCode-Design Hit CounterLeetCode
- Jmeter系列(34)- 詳解 Counter 計數器JMeter
- python中collections.Counter是什麼?Python
- [LeetCode] 362. Design Hit CounterLeetCode
- vuex2.0-例子學習-counter_byKLVue
- 【MySql】sql_slave_skip_counter引數的用法解析MySql
- 【MySql】sql_slave_skip_counter 引數的用法解析MySql
- sql_slave_skip_counter跳過太多的反應SQL
- c# while迴圈_counter++_內含if判斷_breakC#While
- Counter:簡單而免費的網路流量分析工具
- CSS3CSSS3
- Python程式設計:Counter計數器-dict字典的子類Python程式設計
- 一道演算法題,引出collections.Counter的特殊用法演算法
- CSS3簡明教程之初識CSS3CSSS3
- Microsoft SQL 2008 Setup: Performance Counter Registry Hive consistency check failedROSSQLORMHiveAI