CSS实现eq(n)
It has been 1155 days since the last update, the content of the article may be outdated.
在某些特殊情况下,我们需要用纯CSS实现jQuery的eq(n)选择器,而CSS没有直接提供类似方法。
我们可以通过CSS的:nth-child。
html
1 | <div> |
.foo:nth-child(2)会选中#bar2
同时也支持奇偶操作:nth-child(odd)和偶数选择器
评论
TwikooValine