/ Published in: CSS
URL: http://3liters.com/blog/tag/inline-block-ie7/
You’ve now told the HTML web page that is linked to this CSS document to display the nav_bar list as inline-block – or in a single, horizontal row. The first problem: IE6 and IE7 don’t recognize it, so you need to add something that only they will recognize:
Expand |
Embed | Plain Text
ul#nav_bar li { display:inline-block; zoom: 1; *display: inline; }
You need to login to post a comment.
