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:
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.