I've got some CSS that looks like this:
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
font-size: 140.01%;
color: #000000;
}
but IE won't apply the font size to text in table cells so I've had to
modify it to this:
body {
margin: 0;
}
body, td {
font-family: Arial, Helvetica, sans-serif;
font-size: 140.01%;
color: #000000;
}
This "fixes" it in IE buy in MZ the font size in table cells is too
large. I believe it's 140.01% of 140.01%. I think the only way around
this is to load a specific style sheet depending on the the browser.
Is this the right way to go about this or is there a better way?
Andrew Poulos
PS the .01% was added because someone told me to and I didn't know
enough about fonts to disagree.
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
font-size: 140.01%;
color: #000000;
}
but IE won't apply the font size to text in table cells so I've had to
modify it to this:
body {
margin: 0;
}
body, td {
font-family: Arial, Helvetica, sans-serif;
font-size: 140.01%;
color: #000000;
}
This "fixes" it in IE buy in MZ the font size in table cells is too
large. I believe it's 140.01% of 140.01%. I think the only way around
this is to load a specific style sheet depending on the the browser.
Is this the right way to go about this or is there a better way?
Andrew Poulos
PS the .01% was added because someone told me to and I didn't know
enough about fonts to disagree.
Comment