HTML CSS Prevent Text Selection
Angular Dev
Here’s a simple css style you can add to your styles.scss of any project, to prevent user selection of text.
.prevent-select {
-webkit-user-select: none; /* Safari */
-ms-user-select: none; /* IE 10 and IE 11 */
user-select: none; /* Standard syntax ...