CSS3: highlighted text selected color, css3 highlighted text selected
Keyword: selection
To personalize the website subject, you can set the highlighted background color of the text.
:selection { background: #ffb7b7; /* WebKit/Blink Browsers */}::-moz-selection { background: #ffb7b7; /* Gecko Browsers */}
A simple example:
<!DOCTYPE html>
When not selected:
When selected:
The highlighted color selected in the first section is the default color of the browser. The CSS3 attribute runs normally in mainstream browsers (FF, Chrome.
You can try it in jsfiddle Online Editing:
Http://jsfiddle.net/xm7h3oxs/
Reference blog: http://css-tricks.com/overriding-the-default-text-selection-color-with-css/
In HTML/CSS, how does one change the highlighted color when the text is selected?
For safai
P. red: selection {
Background: red; color: white;
}
For firefox
P. red:-moz-selection {
Background: red; color: white;
}
There is no good way for IE. You can only dynamically Add labels to the selected text and then set the label style.
Does the highlighted text in PDF have other colors to choose from?
Of course not. If it is Fuxin reader, the highlighted text in "comment-" will pop up an attribute box. You can choose a different color. If it is adobe reader, right-click the highlighted area, select properties to set the highlighted color!