当前位置: 首页 > Web前端 > CSS

使用css伪类,实现同类型复选框计数的效果

时间:2023-03-30 14:12:34 CSS

.box{/*创建计数器num*/counter-reset:num;}input:checked{/*增量计数器*/counter-increment:num;}.count::before{/*statistics*/content:counter(num);}

Count