Answers for "how to disable selecting text in html using css"

CSS
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

Code answers related to "how to disable selecting text in html using css"

Browse Popular Code Answers by Language