How TO - Change Text Selection Color

Clash Royale CLAN TAG#URR8PPP <!--
main_leaderboard, all: [728,90][970,90][320,50][468,60]-->
How TO - Change Text Selection Color
❮ Previous
Next ❯
Learn how to override the default text selection color with CSS.
Text Selection Color
Select the following text:
Default text selection color
Custom text selection color
How To Change Text Selection Color
Use the ::selection selector to override the default text selection color:
Example
::-moz-selection /* Code for Firefox */
color: red;
background: yellow;
::selection
color: red;
background:
yellow;
Try it Yourself »
❮ Previous
Next ❯