/* one item */
div:nth-child(1):nth-last-child(1) {
width: 100%;
}
/* two items */
div:nth-child(1):nth-last-child(2),
div:nth-child(2):nth-last-child(1) {
width: 50%;
}
/* four items */
div:nth-child(1):nth-last-child(4),
div:nth-child(2):nth-last-child(3),
div:nth-child(3):nth-last-child(2),
div:nth-child(4):nth-last-child(1) {
width: 25%;
}
'WEB > CSS' 카테고리의 다른 글
css로 그라데이션 넣을때 편한 사이트 (0) | 2017.08.28 |
---|---|
웹접근성을 위한 스킵네비게이션 (0) | 2017.08.24 |
글자 자르기(...으로 흘러넘치게 보이기) (0) | 2017.06.07 |
vertical-align 가운데 (ie10+) (0) | 2017.06.07 |
inline 또는 Inline-block 사용 시 문제(경험) (0) | 2017.03.31 |