Answers for "how to highlight text in html with different color"

CSS
3

html how to change highlight color

::selection {
  background: #ffb7b7; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #ffb7b7; /* Gecko Browsers */
}
Posted by: Guest on January-08-2021
5

change highlight color html

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

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

how to change text color using only html

<body>
  <p style="color:#FF0000";>Red paragraph text</p>
</body>
Posted by: Guest on October-06-2020

Code answers related to "how to highlight text in html with different color"

Browse Popular Code Answers by Language