“CSS d'abord” Réponses codées

premier enfant 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

CSS d'abord

: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 First H Element

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

premier élément CSS

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

premier enfant

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

Réponses similaires à “CSS d'abord”

Questions similaires à “CSS d'abord”

Plus de réponses similaires à “CSS d'abord” dans CSS

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code