React

React
Fundamental of React Js

Friday, March 24, 2023

CSS Hacks – text un-selectable

 make text unselectable 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 */
1
2
3
4
5
6
7
8
9
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
1
2
3
input {
      pointer-events:none;
    }