$cat~/glossario/pseudo-element.md

Pseudo-elemento

CSS

Parte virtual como ::before ou ::after estilizável.

pseudo-element.mdmarkdown
01

seção

Explicação

Pseudo-elemento — Parte virtual como ::before ou ::after estilizável.

::before ::after content decorative — ::first-line ::selection — não DOM real.

content property required before/after.

02

seção

Exemplo

snippetcss
.quote::before {  content: "\201C";  font-size: 2rem;}
03

seção

Modo de uso

  • Icons without extra DOM

  • Clearfix legacy

  • Underline animation

04

seção

Armadilhas comuns

  • Screen reader ignore decorative only if aria hidden parent

  • Content not in accessibility tree

05

seção

Termos relacionados