본문 바로가기

Archived/CSS

nth child의 의미

li

  div

  div

  div

li

  div

  div

  div

 

가 있다고 할때, 

 

li: first-child는 div 이다. li, 너의 첫번째 자식 녀석을 내놓아라! 그런 의미. 

li들 중 첫번째를 내놓아라고 하는게 아니다. 아래의 예시를 보고나니 아주 명확해짐! (내 삽질들 안녕)


예시 https://www.w3schools.com/cssref/tryit.asp?filename=trycss_sel_firstchild

 

Tryit Editor v3.6

p:first-child { background-color: yellow; } This paragraph is the first child of its parent (body). Welcome to My Homepage This paragraph is not the first child of its parent. This paragraph is the first child of its parent (div). This paragraph is not the

www.w3schools.com

 

'Archived > CSS' 카테고리의 다른 글

list의 첫번째 child 빼고 hover effect 주고싶을 경우  (0) 2019.10.24
Grid  (0) 2019.10.23
Flexbox  (0) 2019.10.23
ease-in, ease-out / forwards / animation-delay / box-shadow / overflow-wrap  (0) 2019.10.21