Resource icon

Unmaintained Styling the Text Selection

Overview
So here I will show you how to style the text selection.

So lets say we wanted to add a reddish background color to the text selection with white text color. We would add this to EXTRA.css:
Code:
/* Mozilla Browser */
::-moz-selection { background-color: #dd2020; color: #fff; }
/* Other Major Browsers */
::selection {...
You do not have permission to view the full content of this resource. Log in or register now.
  • Like
Reactions: Mrallananas
Author
Matthew Hawley
Views
472
First release
Last update

Ratings

5.00 star(s) 1 ratings

Latest updates

  1. Cursor and Outline

    Added CSS properties, cursor and outline.
  2. Text Shadow

    Now shows you how to add text-shadow.

Latest reviews

Nice! I forgot to style this.
Top Bottom