Hey there,
This is a simple problem, code can illustrate the clearest:
On Firefox it inserts spacing after the numbers, on IE (6--and 7 I believe) the number and the list item runs into each other.Code:<html> <head> <style> ol { margin 0; padding: 0; list-style-position: inside; font-size: 2.6em; } li { margin: 0; padding: 0; } cite { margin: 0; padding: 0; } </style> </head> <body> <ol> <li><cite>Foo</cite></li> </ol> </body> </html>
I know I could wrap Foo in a container and give that spacing, but then I would also need to use conditional includes, as there will be too much spacing for Firefox.
Are there any fixes?
Edit:
To that point, is there any way to control the spacing between the number and the list item in Firefox?
Cheers.




Bookmarks