1분 코딩) css Flexbox와 css Grid
https://www.youtube.com/watch?v=eprXmC_j9A4
css 가상 선택자 정리
https://lalacode.tistory.com/6
css 가상 선택자
- :nth-child(N) 부모 안에 모든 요소 중 N 번째 요소
A:nth-of-type(N) 부모 안에 A라는 요소 중 N 번째 요소- :first-child 부모 안에 모든 요소 중 첫 번째 요소
:last-child 부모 안에 모든 요소 중 마지막 요소- A:first-of-type 부모 안에 A라는 요소 중 첫 번째 요소
A:last-of-type 부모 안에 A라는 요소 중 마지막 요소