Showing posts with label Safari browser. Show all posts
Showing posts with label Safari browser. Show all posts

Monday, September 26, 2011

Safari CSS Hack code

I tried to fix safari CSS issue. I found one code,

body { margin-top: 15px; }
/* Safari Hack CSS */
@media screen and (-webkit-min-device-pixel-ratio:0) {body { margin-top: 10px; }}

This will affect the CSS style for only safari browsers.