/ Published in: CSS
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
Copy this code and paste it in your HTML
ul#nav_bar li { display:inline-block; zoom: 1; *display: inline; }
URL: http://3liters.com/blog/tag/inline-block-ie7/