Disable element selection when clicking on it

How to disable element selection when clicking on it with CSS

div, span, p, b, em {
    user-select: none;
    outline: 0;
}

Leave a Reply