如何隐藏`
`中的第一个元素,如果它是锚点?

huangapple go评论66阅读模式
英文:

How to hide first element in div if its anchor

问题

我只需要隐藏带有 class=grid-container 的 div 内的锚点元素,只有在第一个元素是 anchor a 的情况下才需要隐藏。我使用以下 CSS,但它隐藏了 div 内的所有元素。

.grid-container > a:first-of-type {
  display: none;
}

如何隐藏`<div>`中的第一个元素,如果它是锚点?

英文:

How can i hide anchor element inside div with class=grid-container. I only need to hide if first element is anchor a otherwise i dont need to hide.

I used below css but it hides all elements in div

.grid-container &gt; a:first-of-type {
  display: none; 
}

如何隐藏`<div>`中的第一个元素,如果它是锚点?

答案1

得分: 3

.grid-container > a:first-child {
  display: none; 
}
英文:

Try :first-child.

.grid-container &gt; a:first-child {
  display: none; 
}

huangapple
  • 本文由 发表于 2023年4月4日 17:47:35
  • 转载请务必保留本文链接:https://go.coder-hub.com/75927910.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定