Answers for "how to make text don't select in css"

CSS
4

css text dont select

.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 */
}
Posted by: Guest on February-13-2021
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 text don't select in css"

Browse Popular Code Answers by Language