Hello!
I have a simple CSS where i have declared all my styles, below is an example.
h3 {
color:#000000;
font-size:8 pt;
font-family:Verdana,Arial;
font-weight: normal;
}
When I'm using my, for example "h3", I get space below the line marked <h3></h3>. How can I come around this problem?
Another question:
When I'm viewing my page in Netscape (7.0) it seems like it ignores my style sheet. What should I do so it works in NE
Thanks for helping me!Originally posted by digital_storm
I get space below the line marked <h3></h3>. How can I come around this problem?Add the following CSS to your current <h3> selector rules:margin: 0;
padding: 0;Originally posted by digital_storm
When I'm viewing my page in Netscape (7.0) it seems like it ignores my style sheet.It should work correctly (in the exception of adding a space between "8" and "pt"). I'm guessing either you're viewing a cached version of the page or, if it's uploaded somewhere, the server isn't sending your CSS with the correct MIME type.
I have a simple CSS where i have declared all my styles, below is an example.
h3 {
color:#000000;
font-size:8 pt;
font-family:Verdana,Arial;
font-weight: normal;
}
When I'm using my, for example "h3", I get space below the line marked <h3></h3>. How can I come around this problem?
Another question:
When I'm viewing my page in Netscape (7.0) it seems like it ignores my style sheet. What should I do so it works in NE
Thanks for helping me!Originally posted by digital_storm
I get space below the line marked <h3></h3>. How can I come around this problem?Add the following CSS to your current <h3> selector rules:margin: 0;
padding: 0;Originally posted by digital_storm
When I'm viewing my page in Netscape (7.0) it seems like it ignores my style sheet.It should work correctly (in the exception of adding a space between "8" and "pt"). I'm guessing either you're viewing a cached version of the page or, if it's uploaded somewhere, the server isn't sending your CSS with the correct MIME type.