英文:
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;
}
英文:
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 > a:first-of-type {
display: none;
}
答案1
得分: 3
.grid-container > a:first-child {
display: none;
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论