Horje
remove background when autofill input css Code Example
remove background when autofill input css
@-webkit-keyframes autofill {
    0%,100% {
        color: #666;
        background: transparent;
    }
}

input:-webkit-autofill {
    -webkit-animation-delay: 1s; /* Safari support - any positive time runs instantly */
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}




Css

Related
rgba red color Code Example rgba red color Code Example
how to change cursor in css on hover Code Example how to change cursor in css on hover Code Example
ruby cheat sheet Code Example ruby cheat sheet Code Example
grid center align Code Example grid center align Code Example
css grid center Code Example css grid center Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11