Answers for "remove button focus outline"

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
0

remove outline on button click

using outline:none; we can remove that border in chrome

for tailwind css :
outline-none 
focus:outline-none
Posted by: Guest on September-13-2020

Code answers related to "remove button focus outline"

Browse Popular Code Answers by Language