I have an OL element with a position-list: inside. However, if the text inside the LI element is multi-line, the text of the next line is cleared of numbering, and not with other text.
Is there any way to fix this?
Used code:
<style type="text/css">
ol { list-style-position: inside; }
</style>
<ol>
<li>If this text passes to the next line, it not aligned with the content but with
the numeric label.
</ol>
Thank you for your help:)
source
share