Advertisement
firoze

How to Style the Selection Area on HTML Page

Apr 29th, 2016
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.12 KB | None | 0 0
  1. ::selection{
  2.     background-color:white;
  3.     text-shadow:none;
  4. }
  5. ::-moz-selection{
  6.     background-color:red;
  7.     text-shadow:none;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement