Jak usunąć podświetlanie tekstu po podwójnym kliknięciu
/**HTML**/
<h1 class="element">The Element</h1>
/**CSS**/
.element {
user-select: none;
}
deejay
/**HTML**/
<h1 class="element">The Element</h1>
/**CSS**/
.element {
user-select: none;
}