React

React
Fundamental of React Js

Friday, March 24, 2023

CSS Hacks – text not highlightable

 how to make text not highlightable CSS

Code

1
2
3
4
-webkit-user-select: none; /* Safari */       
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */

0 comments: