如果我有HTML:
我可以在我的CSS中写一条规则:
.myClass {
/* only display the first instance of the class */
}
最佳答案
您可以使用:first-of-type
.myClass {
display: none;
}
.myClass:first-of-type {
display: block;
}
这将隐藏除DOM中第一个元素之外的所有myClass元素.我一直认为这是最具可读性的感觉.