-
This one CSS instance is stumping me big time!
This is really stumping me. I don’t know how many time’s I’ve done this, but on this one particular case it is not working.
My CSS says this:
#footer{
color:#888;
font-size:20px;
}h3{
font-family: Sylfaen, Georgia, “Times New Roman”, Times, serif;
font-weight:normal;
letter-spacing: -1px;
margin:0;
}This is the only reference to h3 in my CSS file.
It is used here:
Unlike all other instances of using px for font-size units, in this one case only, the resulting
is of significantly different size when viewed in Firefox vs. IE.
I cannot for the life of me figure out why this must be. I have plenty of other CSS styles linked that do this exact sort of thing, using px units, and they behave identically between the two browsers, because afterall pixels are pixels, no matter what software you are using.
But this one doesn’t!
Any ideas? I’ve studied these little snippets of code for hours and can’t understand.
Thanks
Andrew