Hi!
I have an OL element with list-style-position: inside. However, if the text inside an LI element is multiline, the text on the next line flushes left with the numbering, not with the other text.
Is there any way of fixing this?
Code used:
<style type="text/css">
ol { list-style-position: inside; }
</style>
<ol>
<li>If this text passes to the next line, it's not aligned with the content but with
the numeric label.
</ol>
Thanks for your help :)