Advertisement
perazite

CSS background highlight selection

Mar 8th, 2013
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.25 KB | None | 0 0
  1. ::selection {
  2.     background: #e72936; /* Safari */
  3.     color:#FFFFFF;
  4.     }
  5. ::-moz-selection {
  6.     background: #e72936; /* Firefox */
  7.     color:#FFFFFF;
  8.     }
  9. ::-webkit-selection {
  10.     background: #e72936; /* Firefox */
  11.     color:#FFFFFF;
  12.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement