Difference between revisions of "Pseudo-element (CSS)"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(Created page with "In Cascading Style Sheets, '''pseudo-elements''' are style rules that affect certain parts of a web page. == Description == Pseudo-elements are added to the browser'...")
 
(Pseudo-class)
Line 14: Line 14:
 
== Pseudo-class ==
 
== Pseudo-class ==
  
Compare [[Pseudo-class (CSS)]].
+
Compare [[Pseudo-class (CSS)|Pseudo-classes]].
  
 
== See also ==
 
== See also ==

Revision as of 12:31, 8 March 2016

In Cascading Style Sheets, pseudo-elements are style rules that affect certain parts of a web page.

Description

Pseudo-elements are added to the browser's Document Object Model (DOM).

Pseudo-elements really are elements in the web page, because the DOM is the browser's internal representation of all the CSS rules it has processed.

Example

  • Style the first letter, or line, of an element
  • Insert content before, or after, the content of an element

Pseudo-class

Compare Pseudo-classes.

See also