Answers for "how to remove button border after click"

CSS
7

css get rid of button outline on click

button:hover, button:focus {
  outline: none;
}
Posted by: Guest on September-17-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 "how to remove button border after click"

Browse Popular Code Answers by Language