- Одын
- Два
- Три
/*нумерованные списки*/
ol {
list-style-type: none;
counter-reset: num;
margin: 0 0 0 45px;
padding: 15px 0 5px 0;
font-size: 16px;
}
ol li {
position: relative;
margin: 0 0 0 0;
padding: 0 0 10px 0;
line-height: 1.4;
}
ol li:before {
content: counter(num);
counter-increment: num;
display: inline-block;
position: absolute;
top: 0;
left: -33px;
width: 28px;
height: 28px;
background: #fe1616;
color: #fff;
text-align: center;
line-height: 28px;
font-size: 18px;
}