Answers for "css input disabled background color"

CSS
1

Removing default background color of html input

/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}
Posted by: Guest on October-21-2021
2

input disabled remove css

pointer-events:none;
Posted by: Guest on March-21-2020

Code answers related to "css input disabled background color"

Browse Popular Code Answers by Language