/ Published in: CSS
See the source above for a quick explanation. And don't ask me to explain why \9 works for IE8...but it does.
Use these with caution.
Expand |
Embed | Plain Text
body { color: red; /* all browsers, of course */ color : green\9; /* IE8 and below */ *color : yellow; /* IE7 and below */ _color : orange; /* IE6 */ }
Comments
Subscribe to comments
You need to login to post a comment.

pretty cool!
Didn't know about the \9 one, thanks!