How to write only safari specific styles without affecting any other browser styles?
I have tried it but it is not working in safari.I'm using Safari 5+.
@media not all and (-webkit-min-device-pixel-ratio:0) {
.btn-group > .btn + .btn {
margin-left: -8px;
}
.btn-group:hover a {
z-index:1;
}
.btn-group:hover button{
z-index:10;
}
.input-append input{
z-index:1;
}
.input-append a{
z-index:10;
}
}