Hi, I am having problems with list-style-position: inside when using IE. In 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>
In Chrome / Firefox, it looks like this:
1. My Title My Details
But in IE, this shows:
1. My Title My Details
Any suggestion to make it work in IE?
source share