“Pseudo elementos em CSS” Respostas de código

O que é um seletor de pseudo?

A pseudo-class is a selector that selects elements that are in a specific state, e.g. they are the first element of their type, or they are being hovered over by the mouse pointer
Light Lobster

CSS Pseudo-elementos

selector::pseudo-element {
  property: value;
}
naly moslih

CSS Pseudo elementos

h2::first-letter {}
p::first-line {}
p::selection {background-color: red;}
::after / ::before
DevLorenzo

Pseudo elementos em CSS

As a matter of fact pseudo element is used to work on written items inside html
element.
This given pseudo element makes the color of first line after h1 in red color.

h1::first line{
  color:red;
}

YOU CAN LEARN MORE ABOUT SIBLINGS AND ADJACENT SIBLINGS TOOO!
caudatam daktula

CSS Pseudo-classes

selector:pseudo-class {
  property: value;
}
Wrong Warbler

Respostas semelhantes a “Pseudo elementos em CSS”

Perguntas semelhantes a “Pseudo elementos em CSS”

Mais respostas relacionadas para “Pseudo elementos em CSS” em TypeScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código