"Neil Mac" <root (AT) 127 (DOT) 0.0.1> wrote:
Quote:
I'm just starting to learn css. |
Welcome to the club (what took you so long?).
Quote:
This simple test page I've written works
well in IE6 but the font has changed in Netscape 4.6 and two of the links
don't show up properly. |
CSS Lesson 1, NS4 is hopeless with CSS. Use proper markup and use one of
the many flaws of NS4 to "hide" all your CSS from it. 2 popular methods:
<link rel="stylesheet" href="style.css" type="text/css" media="screen,
projection">
<style type="text/css">
@import url(main.css) screen, projection;
</style>
Headless