CSS target Chrome and Safari only
/* Webkit browser engine: Safari and Chrome */
@media screen and (-webkit-min-device-pixel-ratio:0) {
...
}
Useful for form inputs and dropdown styling as IE and Firefox are a bit less flexible on that…
CSS target Firefox only
@-moz-document url-prefix() {
...
}