I have a problem with the ol list : before each li item there is a space, I don't need it but I want to keep the number before items. I tried to deal with it by setting margin and padding to 0 on ol and li elements but it didn't work. The code looks like this:
<nav>
<ol>
<li>item</li>
<li>item</li>
<li>item</li>
</ol>
</nav>
Do you have any idea using only css and html languages?