Quote:
Originally Posted by rhowbust
Is it normal for older version of IE not to recognise the "in-line" elements at all?
|
Not for inline display style, this is well supported cross-browser.
However, what your navbar uses is inline-block, which IE7 and earlier do have problems with.
Use a conditional comment targeting IE6 & 7 to apply the following style to all your inline-block elements.
Code:
{
display: inline;
zoom: 1;
}
|