CSS Hacks
Specific Seperation
* html selector { propert\y: value} /* IE6 seperation */
*+ html selector { property: value} /* IE7 seperation. Must use if you need to target IE7 specifically */
::root selector { property: value} /* safari (untested in the 3 beta) */
The all in one
selector {
property: value; /* IE5+ can see this */
propert\y: value; /* IE6+, Safari, FF */
_property: value; /* IE6+ */
*property: value; /* IE6+ if css validation to makes you tingle */
}
IE5 for OS9
IF you need to seperatte IE5 on the mac (fuck knows why you’re still developing for this. Its time to trim the fat don’t you think?) use this;
* html selector{
propert\y /**/: value;
}
*Note: When you use the backslash propert\y:value; you can only ever put it after any letter thats after G

No one has discussed this topic. Why not open up the channels of conversation