Answers for "turn off text-selection css"

CSS
0

how to remove text selection in css

/*Copy below for all browsers */
* {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none;
}
Posted by: Guest on March-05-2021
1

css disable text select

-webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none;          /* Likely future */
Posted by: Guest on June-24-2021

Browse Popular Code Answers by Language