Say I have a class which specifies a font size, color and may other properties:
.myFont
{
color:#F00;
font-familiy:Arial;
font-size:15px;
}
So I apply this to a
tag and I want for IE7 and IE8 the size was 13px, NOT 15px. How I can do this easily.
EDIT:
Is there any way whithout including any new .css file?
You need to specify a stylesheet that is only loaded by IE, e.g. using this tutorial.
You can then override the font-size in the base stylesheet in the IE stylesheet.