Menu
Advanced Selectors

CSS Pseudo-elements

Style parts of an element: ::before, ::after, ::first-line.

1Virtual Elements

Insert content without HTML.

Example Code
.quote::before {
  content: '"';
  font-size: 20px;
}
p::first-line {
  font-weight: bold;
}

Finished reading?

Mark this topic as complete to track progress.