A quick question about CSS, I have the following ugly code (CSS is in there in style tags temporarily, until I put it in the .css file as it should be):
<ol style="margin-left: 0; padding-left: 0; ">
<li style="margin-left: 1em;"><spring:message code="message1"/></li>
.....
</ol>
When I test this code in Firefox, I get the right alignment, but when I test it in IE (I am using 8 right now), it doesn't align the same way. To get it to look the same in IE, I need to use
<li style="margin-left: 2em;">
which of course does not look good with Firefox.
Does anyone know why do IE and Firefox need a different value for margin?
Thanks a lot!