文章详情页
css - 关于nth-child()的问题
浏览:215日期:2023-07-06 09:39:03
问题描述
span:nth-child(-n+3)匹配前三个子元素中的span元素为什么是匹配前3个元素??如果n是0开始的话,不应该是n+3吗?
问题解答
回答1:span:nth-child(n+3) 感觉是匹配的从第三个往后的所有 span 元素
n 应该是从 0,1,2,…… 加上负号才能保证 nth-chlid(里面的数字小于等于三)
回答2:Example:
-n+6 / represents the first 6 elements of the list /
The values of A and B can be negative, but only the positive results of An+B, >for n ≥ 0, are used.
你可以这样理解,n是从0开始计数(0,1,2...)所以(-n+6) => (6,5,4,3,2,1)所以是前六个上面的引用已经说了,只有正数会被使用。
标签:
CSS
相关文章:
1. html5 - 在一个页面中 初始了两个swiper 不知道哪里错了 一直不对2. docker-machine添加一个已有的docker主机问题3. python的MySQLdb库中的executemany方法如何改变默认加上的单引号?4. docker绑定了nginx端口 外部访问不到5. javascript - 如何将 windows 下编辑器中的 CRLF 替换为 LF?6. css3中translate(-50%,-50%)对 transform-origin的奇葩影响?7. mysql5.7就没有官方性质的详细配置文件吗?求大神告知8. 关于docker下的nginx压力测试9. javascript - 求解答:实例对象调用constructor,此时constructor内的this的指向?10. javascript - 解释下这种函数定义
排行榜

网公网安备