Sometimes you may need to create a Safari only CSS hack, this can be done with the following CSS hack, for instance, if you want to display background color as red for safari only, all you need to do is:
/*\*/
html>body*.safarihack {background-color: red; }
/**/
In this case, only safari will render the html body background color as red. Hope this helps! :)




















































