2012-02-21 8 views

risposta

9

Aggiungere -webkit-aspetto: none;

.inputtxt { 
    border:0; 
    background:none; 
    -webkit-appearance: none; 
} 

jsFiddle esempio

+3

È possibile mantenere l'icona a discesa? –

+3

Puoi simulare con CSS: http://jsfiddle.net/u8QRS/ – j08691

+0

+1 Ama la tua soluzione. Un altro http://jsfiddle.net/PbYFT/227/ –

1

Non so se questo è ciò che si vuole, ma cerco:

-webkit-appearance:none; 
+0

Grazie Yavanosta. BTW '-webkit-appearance: none' rimuoverà l'icona a discesa. –

1

È necessario rilevare il browser usando jQuery

if($.browser.chrome){ 
userAgent = userAgent.substring(userAgent.indexOf('chrome/') +7); 
userAgent = userAgent.substring(0,userAgent.indexOf('.')); 
version = userAgent; 
    // If it is chrome then jQuery thinks it's safari so we have to tell it it isn't 
$.browser.safari = false; 
     } 

Quindi è possibile applicare le modifiche a queste nel CSS, come sfondo: nessuno specificando se è cromato o no.

background-color:#ffffff; 
background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0,    #f4f4f4), color-stop(0.48, #eeeeee), color-stop(0.5, #f6f6f6), color-stop(0.8, #ffffff)); 
background-image:-webkit-linear-gradient(center bottom, #f4f4f4 0%, #eeeeee 48%, #f6f6f6 50%, #ffffff 80%); 
background-image:-moz-linear-gradient(center bottom, #f4f4f4 0%, #eeeeee 48%, #f6f6f6 50%, #ffffff 80%); 
background-image:-o-linear-gradient(top, #f4f4f4 0%, #eeeeee 48%, #f6f6f6 50%, #ffffff 80%); 
background-image:-ms-linear-gradient(top, #f4f4f4 0%, #eeeeee 48%, #f6f6f6 50%, #ffffff 80%); 
background-image:linear-gradient(top, #f4f4f4 0%, #eeeeee 48%, #f6f6f6 50%, #ffffff 80%); 
Problemi correlati