CSS hack for only Safari NOT Chrome?

csssafari

Is there a css hack that I can use that only works on safari cos have been looking for a while and still found nothing.

Thanks in advance.

Best Answer

I hope it will use.

@media screen and (-webkit-min-device-pixel-ratio:0) { 
    /* It will effect both safari and chrome
    .myClass {
     color:red;
    }

    /* to only effect on safari, you can add this 
    ::i-block-chrome,.myClass {
     color:blue;
    }
}