Answers for "how to make not select a text html"

CSS
0

html don't select text

div{
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select:none;
  user-select:none;
  -o-user-select:none;
}
Posted by: Guest on October-18-2021

Code answers related to "how to make not select a text html"

Browse Popular Code Answers by Language