凉风有信,秋月无边。
亏我思娇的情绪好比度日如年。

列表添加数字序列号前缀,css解决方案!

《列表添加数字序列号前缀,css解决方案!》正文开始,本次阅读大概9分钟。

昨天一个模板用户咨询我关于列表增加数字序列号,比如 1 2 3 ...这样的前缀,但代码中并不能生成前缀数字,或者懒的去弄,想直接用css解决,其实方案还是有的,并且现在还算比较方便!

下面分享出来:

divclass=wrapper
h2ProjectGoals/h2
ol
liBuildawebsitethatiseasytouseandeasytomaintain/li
liBeginusingaconstituentdatabasetoconsolidateallinformationaboutmembers,donorsandaudiences/li
liOfferusersawaytoregisterandpayforclassesonline/li
liEstablishaconsistentbrandforwebsiteandprintmaterials/li
/ol
/div
@importurl(http://fonts.googleapis.com/css?family=Lato|Bree+Serif);
body{
background:white;
}
*,
*:before,
*:after{
box-sizing:border-box;
}
.wrapper{
margin:2emauto;
width:90%;
max-width:1000px;
}
h2{
font-family:BreeSerif,serif;
}
ol{
counter-reset:li;
margin:0;
padding:0;
}
olli{
font-family:Lato,sans;
font-size:1.3em;
list-style:none;
margin:000.5em1.95em;
padding:0.5em1em;
position:relative;
}
olli:before{
background:#8da97d;
color:white;
content:counter(li);
counter-increment:li;
font-family:BreeSerif,serif;
font-size:1.2em;
line-height:1em;
padding:0.5em0;
position:absolute;
top:0.4em;
left:-1.6em;
text-align:center;
width:2em;
}

效果:

这个方式最简单,直接用css解决数字序列号前缀!

赞(27)
【声明】:本博客不参与任何交易,也非中介,仅记录个人感兴趣的内容,内容均不作直接、间接、法定、约定的保证。访问本博客请务必遵守有关互联网的相关法律、规定与规则。一旦您访问本博客,即表示您已经知晓并接受了此声明通告。本博客资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。如果本文导致的版权问题以及内容纠错问题请联系站长QQ:1004619 | 点此给我发送邮件
本文标题:列表添加数字序列号前缀,css解决方案!
本文地址:https://www.1004619.com/nn/lbtjszxlhqzcssjjfa.html