【发布时间】:2018-10-17 04:47:48
【问题描述】:
我发现了一些与此问题相关的主题,但没有一个对我有帮助。
ol {
list-style: none;
padding: 0;
margin: 0;
counter-reset: my-awesome-counter;
columns: 2;
-webkit-columns: 2;
-moz-columns: 2;
}
ol li {
counter-increment: my-awesome-counter;
margin: 1rem 0.25rem;
line-height: normal;
}
ol li:before {
display: inline-block;
content: counter(my-awesome-counter);
width: 40px;
height: 40px;
line-height: 24px;
background: #000;
border-radius: 25px;
color: white;
text-align: center;
margin-right: 0.5rem;
font-size: 24px;
font-weight: 700;
}
我错过了什么?
【问题讨论】: