其他分享
首页 > 其他分享> > 查漏补缺——说说:nth-of-type(3n)选择器

查漏补缺——说说:nth-of-type(3n)选择器

作者:互联网

问题

如题所示

答案

相关源码:

.hzh-friend-item:nth-of-type(3n) {
  margin-right: 0;
}

详解css3中的:nth-of-type(n)

综上所述,:nth-of-type(3n)这个选择器选择的是同类型的第3n个同级兄弟元素。

image

image

你会看到第一行的第三个元素是有右边距的,而第二个元素没有右边距,同理可得。

标签:查漏,元素,右边,nth,3n,type,选择器
来源: https://www.cnblogs.com/Huang-zihan/p/16460206.html