Answers for "select all text css"

CSS
2

css text selection none

user-select: none;
Posted by: Guest on July-27-2021
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

Browse Popular Code Answers by Language