簡體   English   中英

CSS Counter Increment不起作用

[英]CSS Counter Increment is not working

這是我的CSS和HTML:

 .moving-steps > li:before { background: none repeat scroll 0 0 #8F8888; border-radius: 15px; color: #FFFFFF; counter-increment: headings 1; content: counter(headings, decimal); display: block; float: left; font-size: 16px; font-weight: bold; height: 25px; line-height: 26px; margin-bottom: 0; margin-right: 5px; text-indent: 8px; width: 25px; } 
 <ul class="moving-steps"> <li></li> <li></li> <li></li> </ul> 

此代碼無效。

 counter-increment: headings 1;  
 content: counter(headings, decimal); 

每次插入1 ,我錯過了什么?

你應該在ul本身上有這個css:

.moving-steps {
    counter-reset: headings;
}

counter-increment應該只包含headings

.moving-steps > li:before {
    counter-increment: headings;
}

看看這個JS小提琴

 .moving-steps { counter-reset: headings; list-style: none; } .moving-steps > li:before { background: none repeat scroll 0 0 #8F8888; border-radius: 15px; color: #FFFFFF; counter-increment: headings; content: counter(headings, decimal); display: block; float: left; font-size: 16px; font-weight: bold; height: 25px; line-height: 26px; margin-bottom: 0; margin-right: 5px; text-indent: 8px; width: 25px; } 
 <ul class="moving-steps"> <li>First item</li> <li>Second item</li> <li>Third item</li> </ul> 

只需添加以下樣式

body{counter-reset: headings;}

然后價值將增加

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM