IE6 and 7 seem to like to push the list left, and cut off the numbers at www.qwibbledesigns.co.uk/preview/aurelius/about.html , near the bottom. Does anyone know whats going on?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
I believe the default CSS for lists in IE is a left margin of 40px, whereas other browsers use padding (as per a w3c "suggestion"). Most likely you've reset the margin but not the padding. I'd suggest applying CSS similar to this:
|
|||
|
|
If the suggestion of DisgrutnledGoat works: you know about the IE hack to make sure the css definition only aplies on IE (and not an Firefox and the rest )? Use
Thus the '* html' prefix to make only IE 'understand' the definition. Sorry, if I'm stating a common knowledge item here. |
|||||||
|
