how to change colour of selected area in html code example
Example: how to change colour of selected area in html
::-moz-selection { /* Code for Firefox */
color: red;
background: yellow;
}
::selection {
color: red;
background:
yellow;
}