Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

css text highlight

/*Term: css text highlight*/

/*This uses the element ::selection, which is as far as i
know only supported by Google Chrome so far. This is not
a problem though, since other browsers will simply keep
the regular highliting styles.*/

/*Example*/
::selection {
  background-color: #000; /*Highlight Color*/
  color: #fff; /*Text Color*/
}
Source by hospodarets.com #
 
PREVIOUS NEXT
Tagged: #css #text #highlight
ADD COMMENT
Topic
Name
7+3 =