a question about CSS; I am trying to simplify my coding by using css. I have a simple global.css file that has these statements:
body {
background: white;
}
then in the html file i have these lines:-
<html>
<head>
<link rel="stylesheet" href="global.css">
</head>
<body>
</body>
</html>
it seems to be working on Nestcape 7 but not IE 6. In short, it does not change the background to white under IE but it does so under nestcape.
Any clues?
thx
body {
background: white;
}
then in the html file i have these lines:-
<html>
<head>
<link rel="stylesheet" href="global.css">
</head>
<body>
</body>
</html>
it seems to be working on Nestcape 7 but not IE 6. In short, it does not change the background to white under IE but it does so under nestcape.
Any clues?
thx