How to disable text selection on double-click using CSS?
Originally Published Here ๐!
To disable the text selection when the user double clicks on the HTML element, you can use the user-select property and set its value to none in CSS.
TL;DR
/* Disable text selection */
.paragraph {
user-select: none;
...
melvingeorge-me.hashnode.dev2 min read