728x90
/* 7, 14, 21, 28 번째 box 배경색 변경 (7의배수) */
.box:nth-child(7n){
background: red;
}
/* 22번 부터 이후 모든 box 폰트색 변경 */
.box:nth-child(n+22) {
color: blue;
}
/* 1번째 부터 4번째 까지 box 배경색 변경 */
.box:nth-child(-n+5) {
background: green;
}
/* 16번째 부터 19번째 까지 box 배경색 변경 */
.box:nth-child(n+16):nth-child(-n+19) {
background: hotpink;
}
/* 마지막에서부터 순서를 계산 */
/* 마지막(28)에서 부터 3번째 */
.box:nth-last-child(3) {
background: gold;
}
'css' 카테고리의 다른 글
모바일 웹 - 가상키보드로 인한 화면 밀림 해결 (0) | 2021.11.24 |
---|---|
background-clip (0) | 2021.11.18 |
[Chrome] input 자동완성 시 채워지는 배경 색상 글자 색상 변경하기 (0) | 2021.10.14 |
textarea - resize (0) | 2021.10.13 |
mix-blend-mode (0) | 2021.09.13 |