Please guide me how to write browser specific css properties (not classes or ids) ? I can’t manage different css files for different browsers. I want to use same css file and classes but in case of differences I will mention browser pacific properties.
Please guide me how to do that.
You can use jquery to apply different css classes
$.browser.msie is for Internet Explorer
$.browser.chrome for chrome
$.browser.mozilla for mozilla
$.browser.safari for safari
$.browser.opera for opera
This way would give you flexibility when it comes to problems based on positioning
reference : http://api.jquery.com/jQuery.browser/