Answers for "remove button borders on click"

CSS
3

remove button highlight on click

.btn:focus {
  outline: none;
  box-shadow: none;
}
Posted by: Guest on May-04-2020
2

how to remove border on button click

.btnName{
	outline: none;
}
Posted by: Guest on August-27-2020

Code answers related to "remove button borders on click"

Browse Popular Code Answers by Language