RPeraltaJr
6/14/2017 - 5:39 PM

CSS Text selector highlight

CSS Text selector highlight

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

::selection {
    color: red;
    background: yellow;
}