Answers for "html select text"

CSS
6

select text

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

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

how to make it so you can't select text html

<p>
  Selectable text.
</p>
<p class="noselect">
  Unselectable text.
</p>
Posted by: Guest on April-23-2022

Browse Popular Code Answers by Language