2012-02-21 7 views

Respuesta

9

Añadir webkit-apariencia: ninguno;

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

jsFiddle ejemplo

+3

¿Es posible mantener el ícono desplegable? –

+3

Puede falsificarlo con CSS: http://jsfiddle.net/u8QRS/ – j08691

+0

+1 Me encanta su solución. Otro http://jsfiddle.net/PbYFT/227/ –

1

No sé si esto es lo que quiere, pero trato:

-webkit-appearance:none; 
+0

Gracias Yavanosta. BTW '-webkit-appearance: none' eliminará el ícono desplegable. –

1

Es necesario para detectar el navegador 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; 
     } 

A continuación, puede aplicar varios cambios a éstos en su css como fondo: ninguno especificando si es cromado 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%); 
Cuestiones relacionadas