Вот проблема:
У меня есть упорядоченный список ol li
с атрибутом start
, например:
.custom {
margin: 0;
padding: 0;
list-style-type: none;
}
.custom li {
counter-increment: step-counter;
margin-bottom: 10px;
}
.custom li::before {
content: counter(step-counter);
margin-right: 5px;
font-size: 80%;
background-color: rgb(0,200,200);
color: white;
font-weight: bold;
padding: 3px 8px;
border-radius: 3px;
}
<ol start="6" class="custom">
<li>This is the sixth item</li>
<li>This is the seventh item</li>
<li>This is the eighth item</li>
<li>This is the ninth item</li>
<li>This is the tenth item</li>
</ol>
В браузере я получаю следующий вывод:
ЭтоМожно ли сериализовать нумерацию list-style
в упорядоченном списке, используя значение в атрибуте start
вместо 1
?Хотя JavaScript не может быть использован для этого.