ex ) nth-child
div:nth-child(n){
....
}
- n번째 div
ex ) first-child
div:first-child{
....
}
- nth-child(1) 과 같음
ex ) nth-last-child
div:nth-last-child(n){
....
}
- 뒤에서 n번째 div
ex ) last-child
div:last-child(n){
....
}
- nth-last-child(1)과 같음
'HTML\CSS > 개념' 카테고리의 다른 글
[ CSS ] 원화를 백슬래시로 나타내기 (0) | 2020.11.28 |
---|---|
[ CSS ] border-radius (0) | 2020.11.26 |
[ HTML / CSS ] img (0) | 2020.11.25 |
[ CSS ] margin (0) | 2020.11.25 |
[ CSS ] padding / box-sizing:border-box; (0) | 2020.11.25 |