Answers for "remove button border when clicked css"

CSS
3

how to get rid of button outline when clicked

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

remove button default border css

button:focus { outline: none; }
Posted by: Guest on September-09-2020
2

how to remove border on button click

.btnName{
	outline: none;
}
Posted by: Guest on August-27-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 border when clicked css"

Browse Popular Code Answers by Language