Change text selection style using following CSS snippet.

::selection { color: white; background-color: red; }
::-moz-selection { color: white; background-color:red; } /* Firefox */
 

Leave a Comment