Answers for "how to turn off selection in css"

CSS
0

stop selection css

.noselect {
      -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
Posted by: Guest on February-06-2021

Code answers related to "how to turn off selection in css"

Browse Popular Code Answers by Language