Answers for "how to remove focus visible input tag in css"

CSS
17

css remove border input focus

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

diable focus button css

*:focus {
    outline: 0 !important;
}
Posted by: Guest on June-12-2020

Code answers related to "how to remove focus visible input tag in css"

Browse Popular Code Answers by Language