“CSS First Child” Ответ

CSS First Child

: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 Child

/*CSS First - forth child*/
:first-child {}

:nth-child(2){}
:nth-child(3){}
:nth-child(4){}
DeBugDeFrontPage

Первый ребенок

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

Выберите первые 5 детей CSS

li:nth-child(-n+5) {
    color: green;   
}
Giamblers

CSS First Child

selector:first-child{
  //style
  
}
Proud Pigeon

Ответы похожие на “CSS First Child”

Вопросы похожие на “CSS First Child”

Больше похожих ответов на “CSS First Child” по CSS

Смотреть популярные ответы по языку

Смотреть другие языки программирования