“CSS -Pseudoelemente” Code-Antworten

CSS Pseudo-Elemente

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

CSS -Pseudoelemente

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

Pseudoelemente in 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-Pseudoklassen

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

Ähnliche Antworten wie “CSS -Pseudoelemente”

Fragen ähnlich wie “CSS -Pseudoelemente”

Weitere verwandte Antworten zu “CSS -Pseudoelemente” auf CSS

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen