1/*Term: css text highlight*/
2
3/*This uses the element ::selection, which is as far as i
4know only supported by Google Chrome so far. This is not
5a problem though, since other browsers will simply keep
6the regular highliting styles.*/
7
8/*Example*/
9::selection {
10 background-color: #000; /*Highlight Color*/
11 color: #fff; /*Text Color*/
12}