What is "pseudo-elements"

Just like pseudo-classes, pseudo-elements are added to selectors but instead of describing a special state, they allow you to apply styles to certain parts of a document. For example, the pseudo-element ::first-line apply the style only in the first line of the element specified skin selector.

Syntax

seletor::pseudo-elemento {
  propriedade: valor;
}