Hi I'm having issues with list-style-position: inside
when using IE. On Firefox or Chrome it does not seem to have this problem.
ol.myList { list-style-position:inside; }
ol.myList li { padding:20px 10px; font-weight:bold }
ol.myList li p { font-weight:normal }
<ol class="myList" start="1">
<li>
<h4>My Title</h4>
<p>My Details</p>
</li>
</ol>
On Chrome/Firefox it shows like this:
1. My Title
My Details
But on IE it shows this:
1.
My Title
My Details
Any suggestion in order to get it to work on IE?