IE font is too small! Works in Safari great :-(

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am using CSS and have defined my h1 as:
h1
{
color: #FFFbf0;
font size: 110%;
font-weight: bold;
font-variant: small-caps;
}
I cannot figure out why the font is small in IE and have checked my Internet
settings and they are fine. The font is also small in Frontpage Preview Page
but shows up correctly on my Design Page.
Thanks for any insight you can give me!!! I have been working on this too
long :-(
 
Invalid CSS
Instead of
font size: 110%;
use
font-size: 110%;

And font-variant is not globally supported

PS
You should also define a font using something like
font: Arial;
or
font-family: Arial, Helvetica, sans-serif;


--




|I am using CSS and have defined my h1 as:
| h1
| {
| color: #FFFbf0;
| font size: 110%;
| font-weight: bold;
| font-variant: small-caps;
| }
| I cannot figure out why the font is small in IE and have checked my Internet
| settings and they are fine. The font is also small in Frontpage Preview Page
| but shows up correctly on my Design Page.
| Thanks for any insight you can give me!!! I have been working on this too
| long :-(
 
Back
Top