Are you looking for CSS hacks to solve cross browser issues?
This site contains very good documentation for css hacks.
http://www.webdevout.net/css-hacks
In nutshell use following tags for separate styles for different browsers.
IE 6 and below
* html {}
IE 7 and below
*:first-child+html {} * html {}
IE 7 only
*:first-child+html {}
IE 7 and modern browsers only
html>body {}
Modern browsers only (not IE 7)
html>/**/body {}
Recent Opera versions 9 and below
html:first-child {}
No comments:
Post a Comment