Hi,
This is my first post, and hopefully not my last because I always seem to have problems with .css .
Anyway,
I just want to know how come Mozilla/Netscape don't read the .css when I link it like this
<link rel="stylesheet" href="css/zefsci.css" type="text/css" media="screen">
?
What can I do to make it work?
Thank you
.css and mozilla
It should work.
Have you got a link to the test page ?
.css and mozilla
.css and mozilla
It's working, but you shouldn't start class or id names with a number.
.css and mozilla
No problem, even with Netscape 4, but it may help if you validate your html
http://validator.w3.org/check?verbose=1&uri=http%3A//www.zefsci.com/
then your css
http://jigsaw.w3.org/css-validator/validator?profile=css2&warning=2&uri=http%3A//www.zefsci.com/
Internet Explorrer 5.0
.css and mozilla
Thanx alot, that was the problem...
.css and mozilla
I also noticed that you had a few classes that are named by the style they represent.
This means if you ever wanted to change all the .dottedWhite { color:white; } elements to say, NOT white, what would you have to do? Change the color:white; to color:black;, but then what?.... . . ... leave all the <P class="dottedWhite">target</P> like that, so that if you were to view the markup later... it's mis-represented?
I hope I am making sense here. :?