.test ol li::before {
content: counter(point);
counter-increment: point 1;
font-size: 11px;
position: absolute;
left: 0;
top: 4px;
background: brown;
width: 20px;
padding: 0;
color: #fff;
font-weight: bold;
text-align: center;
}
.test {
list-style: none;
counter-reset: point;
}
<div class="test">
<ol>
<li>содержание</li>
<li>содержание</li>
<li>содержание</li>
</ol>
</div>