What would be the CSS conditional statement you can use to include specific CSS for IE, Mozilla, Chrome.
If IE
#container { top: 5px; }
If Mozilla
#container { top: 7px; }
If Chrome
#container { top: 9px; }
What would be the respective ‘If’s’ ?
For that
Using PHP
See
Then then create the dynamic CSS file as per the detected browser
Here is a CSS Hacks list
Source: http://paulirish.com/2009/browser-specific-css-hacks/
If you want to use Plugin then here is one
http://rafael.adm.br/css_browser_selector/