Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
list-style-position
ul.list { margin: 0; padding: 0; list-style-type: none; counter-reset: list-counter; li { position: relative; padding-left: 30px; &::before { counter-increment: list-counter; content: counters(list-counter,".") " "; position: absolute; left: 0; top: 5px; display: block; font-size: 12px; } } }