Answers for "how to make it so you cant select text css"

CSS
6

css text select

::-moz-selection { /* Code for Firefox */
  color: red;
  background: yellow;
}

::selection {
  color: red;
  background: yellow;
}
Posted by: Guest on August-04-2020

Code answers related to "how to make it so you cant select text css"

Browse Popular Code Answers by Language