/ Published in: CSS
URL: http://www.webintenta.com/distinguir-google-chrome-y-safari-con-css.html
No es lo más ortodoxo pero a veces no hay más remedio que echar mano de ellos: dos hacks para distinguir los navegadores Chrome y Safari.
Expand |
Embed | Plain Text
/* Google Chrome hack */ body:nth-of-type(1) .elementOrClassName { /* Propiedades para Google Chrome */ } /* Safari hack */ body:first-of-type .elementOrClassName{ /* Propiedades para Safari */ }
You need to login to post a comment.
