Using IE 6.x (whatever is the latest) on Windows 2000.
For these two CSS definitions if I remove the 2 lines that have the
"mso-" font family definitions (mso-fareast-font-family, and
mso-bidi-font-family) then the "SmallerTex t" assigned as a class to a
div tag produces larger text than the "SmallerTex t2". So x-small is
treated as a bigger font size than plain old small.
How the heck is one supposed to know all the MS stuff one needs to add
to CSS to make CSS behave the way it is supposed to in IE?
Also, x-small, small and medium are bigger in IE than in Mozilla. How
to adjust for this to make pages look the same on both browsers and
yet still use relative font sizes?
div.SmallerText
{color:#000;
margin:0in;
margin-bottom:.0001pt;
punctuation-wrap:simple;
text-autospace:none;
font-size:x-small;
font-family:"Verdana ,Arial";
mso-fareast-font-family:"Verdana ,Arial";
mso-bidi-font-family:"Verdana ,Arial";}
div.SmallerText 2
{color:#000;
margin:0in;
margin-bottom:.0001pt;
punctuation-wrap:simple;
text-autospace:none;
font-size:small;
font-family:"Verdana ,Arial";
mso-fareast-font-family:"Verdana ,Arial";
mso-bidi-font-family:"Verdana ,Arial";}
For these two CSS definitions if I remove the 2 lines that have the
"mso-" font family definitions (mso-fareast-font-family, and
mso-bidi-font-family) then the "SmallerTex t" assigned as a class to a
div tag produces larger text than the "SmallerTex t2". So x-small is
treated as a bigger font size than plain old small.
How the heck is one supposed to know all the MS stuff one needs to add
to CSS to make CSS behave the way it is supposed to in IE?
Also, x-small, small and medium are bigger in IE than in Mozilla. How
to adjust for this to make pages look the same on both browsers and
yet still use relative font sizes?
div.SmallerText
{color:#000;
margin:0in;
margin-bottom:.0001pt;
punctuation-wrap:simple;
text-autospace:none;
font-size:x-small;
font-family:"Verdana ,Arial";
mso-fareast-font-family:"Verdana ,Arial";
mso-bidi-font-family:"Verdana ,Arial";}
div.SmallerText 2
{color:#000;
margin:0in;
margin-bottom:.0001pt;
punctuation-wrap:simple;
text-autospace:none;
font-size:small;
font-family:"Verdana ,Arial";
mso-fareast-font-family:"Verdana ,Arial";
mso-bidi-font-family:"Verdana ,Arial";}
Comment