Answers for "how to change background color of input field focus remove in css"

CSS
24

css remove border input focus

textarea:focus, input:focus{
    outline: none;
}
Posted by: Guest on June-30-2020
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

Code answers related to "how to change background color of input field focus remove in css"

Browse Popular Code Answers by Language