For reasons of styling I use an ol element with pseudo classes. Unfortunately I cannot start counting the list items from a desired index. What is wrong?
HTML
<ol start="14">
<li>car</li>
<li>flower</li>
<li>garden</li>
<li>shool</li>
<li>river</li>
</ol>
CSS
ol {
width: 850px;
padding: 0;
margin: 0 auto;
counter-reset: item;
list-style-type: none;
font-size: 18px;
line-height: 23px;
font-weight: 400;
font-style: normal;
}
li:before {
content: counter(item)" ";
counter-increment: item;
}