Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ***************** Changing the highlight color when selecting text in an HTML text input ********************
- Just paste this bellow code in your style.css file to change the highlight color when selecting text.This code is cross browser supported.
- /* For Changing the highlight color when selecting text */
- /* Works on common browsers */
- ::selection {
- background-color: #BD4932;
- color: #fff;
- }
- /* Mozilla based browsers */
- ::-moz-selection {
- background-color: #BD4932;
- color: #fff;
- }
- /* For Other Browsers */
- ::-o-selection {
- background-color: #BD4932;
- color: #fff;
- }
- ::-ms-selection {
- background-color: #BD4932;
- color: #fff;
- }
- /* For Webkit */
- ::-webkit-selection {
- background-color: #BD4932;
- color: #fff;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement