The following is taken from the Yahoo css reset. Can someone please explain the purpose of the asteriks?
body{
font:13px/1.231 arial,helvetica,clean,sans-serif;
*font-size:small;
*font:x-small;
}
|
|
|
It is a browser specific CSS hack for versions 7 or below of Internet Explorer.
From: http://www.javascriptkit.com/dhtmltutors/csshacks3.shtml |
|||
|
|
|
As far as I know, asterisk prevents Firefox to read the attribute, but is valid in IE. |
|||
|
|
|
Placing characters like that is a hack/workaround for getting IE 6 to use a style's property, while hiding it from more "sane" browsers. From here: To cut a long story short, the Internet Explorer CSS parser is overly aggressive at trying to discover the names of properties and will in fact ignore leading non-alphanumeric characters. From my testing this appears to be the case from at least IE5 onwards. |
|||
|
|
|
It's an Internet Explorer hack. If you add a non-alphanumeric character such as an asterisk (*) immediately before a property name, the property will be applied in IE7 and below, but not in other browsers. |
|||
|
|
|
It's a CSS hack, that rule will only be applied to IE7 and below. I wouldn't recommended using it though, there's better ways to fix IE incompatibilities. |
|||
|
|
|
All browsers but IE ignore the rules. It's known as the star hack. I think IE7 will ignore the rules in standards mode. In this case, the font rule is set and then overridden for IE 6 and sometimes 7. |
|||||
|