remove highlight color on double click code example
Example: how to remove text highlight on double click
/**HTML**/
<h1 class="element">The Element</h1>
/**CSS**/
.element {
user-select: none;
}
/**HTML**/
<h1 class="element">The Element</h1>
/**CSS**/
.element {
user-select: none;
}