Answers for "label onclick remove highlight"

CSS
4

remove button highlight on click

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

how to remove text highlight on double click

/**HTML**/
<h1 class="element">The Element</h1>

/**CSS**/
.element {
	user-select: none;
}
Posted by: Guest on October-10-2020

Code answers related to "label onclick remove highlight"

Browse Popular Code Answers by Language