gpt4 book ai didi

html - 具有 nth-of-type 的 CSS 选择器在 标签内不起作用

转载 作者:行者123 更新时间:2023-11-28 15:53:52 25 4
gpt4 key购买 nike

之前,我有这个工作:

CSS

.categorie-image:not(:first-of-type):not(:nth-of-type(2)):not(:nth-of-type(3)) {
margin-top: 20px;
}

HTML

<div class="categorie-image custom-border" style="background-image:url(succes.png);">
<div class="categorie-title">Text</div>
</div>

但后来我需要让 div 可点击,所以我将它们包裹在 <a href="#"> 中:

<a href="#">
<div class="categorie-image custom-border" style="background-image:url(succes.png);">
<div class="categorie-title">Text</div>
</div>
</a>

但是现在我的 CSS 不再工作了。我知道它与子元素有关,但我试过了:

  • a.categorie-image:not(:first-of-type)...
  • a > .categorie-image:not(:first-of-type)...
  • div.categorie-image:not(:first-of-type)...

但运气不好。我应该如何更改我的 CSS?

最佳答案

关于html - 具有 nth-of-type 的 CSS 选择器在 <a> 标签内不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33563063/

25 4 0