“Cómo eliminar el fondo de entrada en Select OIN CSS” Código de respuesta

Cómo eliminar el fondo de entrada en Select OIN CSS

*:-webkit-autofill,
*:-webkit-autofill:hover,
*:-webkit-autofill:focus,
*:-webkit-autofill:active {
    /* use animation hack, if you have hard styled input */
    transition: all 5000s ease-in-out 0s;
    transition-property: background-color, color;
    /* if input has one color, and didn't have bg-image use shadow */
    -webkit-box-shadow: 0 0 0 1000px green inset;
    /* text color */
    -webkit-text-fill-color: red;
    /* font weigth */
    font-weight: 300!important;
}
Alert Ant

Cómo eliminar el fondo de entrada en Select OIN CSS

*:-webkit-autofill,
*:-webkit-autofill:hover,
*:-webkit-autofill:focus,
*:-webkit-autofill:active {
    /* use animation hack, if you have hard styled input */
    transition: all 5000s ease-in-out 0s;
    transition-property: background-color, color;
    /* if input has one color, and didn't have bg-image use shadow */
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
    /* text color */
    -webkit-text-fill-color: #fff;
    /* font weigth */
    font-weight: 300!important;
}
Alert Ant

Respuestas similares a “Cómo eliminar el fondo de entrada en Select OIN CSS”

Preguntas similares a “Cómo eliminar el fondo de entrada en Select OIN CSS”

Más respuestas relacionadas con “Cómo eliminar el fondo de entrada en Select OIN CSS” en CSS

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código