Cannot work out how to get the following menu to display correctly in IE6, any ideas?
Demo: http://www.jankoatwarpspeed.com/examples/vimeo_navigation/
Cannot work out how to get the following menu to display correctly in IE6, any ideas?
Demo: http://www.jankoatwarpspeed.com/examples/vimeo_navigation/
A few key things to remember that are relevant to this menu:
display:inline-block
in IE6z-index
in IE6:first-child
and :last-child
in IE6Basically, what you have to do is:
display:inline-block
, use float:left
and friendsz-index
for this menu anywayEDIT: IE6 doesn't support CSS selectors like "#menu > li
", you will have to use "#menu li
".