jQuery 多个伪类
我想在表格的第一列上制作斑马效果。我如何选择 tr 的第一个 td 并对其应用 nth-child(2n) ?
I'd like to make the zebra effect on the first column of a table. How could I could select the first td of a tr and apply nth-child(2n) on it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
:nth-child()
伪类转到tr
,:first-child
伪类转到TD:
The
:nth-child()
pseudo-class goes to thetr
, and the:first-child
pseudo-class to thetd
:您需要将
nth-child(2n)
添加到中,然后使用
:first-child
仅选择第一个 <代码>。在这里查看:http://jsfiddle.net/ajthomascouk/WtLek/
You need to add
nth-child(2n)
to the<tr>
and then use:first-child
to only select the first<td>
. Check it out here:http://jsfiddle.net/ajthomascouk/WtLek/