I have a problem in Firefox 57 with ordered lists in html.
html is dynamically generated, but the example looks like this:
<ol>
<li>ashdg</li>
<li>ashdg</li>
<li>ashdg</li>
</ol>
It has the following CSS
ol{
margin-top: 0px !important;
margin-bottom: 0px !important;
list-style-type: decimal !important;
list-style-position: inside !important;
}
p, ul, ol {
padding: 0;
margin: 0;
display: inline;
}
Firefox exit

Chrome exit

source
share