css选择器位置和数量技巧
2021-05-15 22:28
标签:ack style first 显示 大于 child 选择器 元素 round 1. 除去首个元素 2. 第1-3个元素 3. 除去第1-3个元素 4.第5-10个子元素 5.倒数第四个以及之前的元素 6. .list里面li元素个数大于等于4,则显示为红色(数量感知) css选择器位置和数量技巧 标签:ack style first 显示 大于 child 选择器 元素 round 原文地址:http://www.cnblogs.com/mengff/p/7749755.htmlli:not(:first-child)
li + li
li:first-child ~ li
li:nth-child(-n+3)
li:not(:nth-child(-n+3))
table tr:nth-child(n+5):nth-child(-n+10) {
background-color: red;
}
:nth-last-child(n+4)
.list li:nth-last-child(n+4) ~ li,
.list li:nth-last-child(n+4):first-child {
color: red
}