Answers for "selected option text select"

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

Code answers related to "selected option text select"

Browse Popular Code Answers by Language