03 февруари 2009, вторник

CSS hack - only for Safari browser

If you want to make a part of your css to work only for Safari this is one of the ways to do it:

@media screen and (-webkit-min-device-pixel-ratio:0) {

Whatever you put in here will be visible only for Safari

}

Enjoy using it!