有用的:nth-child秘方
- Ehaagwlke - 前端观察译自:Useful :nth-child Recipies. 中文:有用的:nth-child秘方. 请尊重版权,转载请注明来源,多谢. 当我想要完美的使用:nth-child或者:nth-of-type的时候有点儿头晕. 你越理解它们,就能写出越好的CSS规则. 在这些简单的”秘方”(实际上是表达式)中我将重复的使用一个简单的列表并随即选择数字.
当我想要完美的使用:nth-child或者:nth-of-type的时候有点儿头晕。你越理解它们,就能写出越好的CSS规则!
在这些简单的”秘方”(实际上是表达式)中我将重复的使用一个简单的列表并随即选择数字。但是很明显很容易改变它们以获得类似的选择器。
1 2 3 | li:nth-child(5){ color: green; } |
要选择第一个元素,你可以使用:first-child,或者我相信你也可以改下上面的例子来实现。
li:nth-child(n+6){ color: green; }
如果有超过10个元素,它将会选中超过5个。
1 2 3 | li:nth-child(-n+5){ color: green; } |
1 2 3 4 | li:nth-child(4n-7) { /* or 4n+1 */ color: green; } |
1 2 3 | li:nth-child(odd){ color: green; } |
1 2 3 | li:nth-child(even){ color: green; } |
当然这里也有另外两种实现,你懂的——神飞
1 2 3 | li:last-child { color: green; } |
1 2 3 | li:nth-last-child(2){ color: green; } |
从这个例子可看出,上面那个例子也有第二种实现方法。
有趣的是,:first-child 和:last-child被IE 7支持,但是知道IE9才支持剩下的选择器。如果你担心IE,可以使用Selectivizr。如果你浏览器兼容性对你很重要,请关注When can I use…
嗯,使用CSS3选择器是件很有趣的事情,像做简单的数学题一样。
更多关于CSS3选择器,请查阅:征服高级CSS选择器