Answers for "css input focus remove glow"

CSS
24

css remove border input focus

textarea:focus, input:focus{
    outline: none;
}
Posted by: Guest on June-30-2020
0

input remove blue glow

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}
Posted by: Guest on April-07-2020

Browse Popular Code Answers by Language