“Pierwszy CSS” Kod odpowiedzi

Pierwsze dziecko CSS

:first-child {
	//styles here
}

:nth-child(1) { //the benefit of this is you can do it for 2nd, 3rd etc...
	//styles here 
}
Carnivorous Flamingo

Pierwszy CSS

:first-of-type {
	//styles here
}

:first-child {
	//styles here
}

:nth-child(1) { //the benefit of this is you can do it for 2nd, 3rd etc...
	//styles here 
}
Carnivorous Flamingo

CSS Pierwszy element H

p:first-of-type {
  font-size: 1.25em;
}
Clever Crane

Pierwszy element CSS

p:first-child {
  font-size: 1.5em;
}
Clever Crane

pierworodny

p:first-child {
  background-color: yellow;
}
Salo Hopeless

Odpowiedzi podobne do “Pierwszy CSS”

Pytania podobne do “Pierwszy CSS”

Więcej pokrewnych odpowiedzi na “Pierwszy CSS” w CSS

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu