gpt4 book ai didi

html - :first-child selector doesn't work

转载 作者:太空宇宙 更新时间:2023-11-03 21:44:50 24 4
gpt4 key购买 nike

我想给第一个 <article class="type-reviews"> 增加宽度元素,所以我试过了:

/*this is what I had previously and works right*/
#show-reviews .type-reviews {
display: inline-block;
width: 31%;
margin-right: 2% !important;
padding: 0px;
vertical-align: text-top;
}

新规则:

/*this is what I've added to change the first element width*/
#show-reviews .type-reviews:first-child {
width: 50% !important;
}

但新的 CSS 并没有改变任何东西。即使使用 Firebug 进行检查,该规则似乎也不适用于第一个元素。

接下来是 HTML:

...
<div id="show-reviews">
<div id="banner-lateral">...</div>
<article id="post-300" class="post-300 type-reviews status-publish hentry has-post-thumbnail">...</article>
<article id="post-222" class="post-222 type-reviews status-publish hentry has-post-thumbnail">...</article>
...
</div>

最佳答案

这是因为您的 .type-reviews 不是第一个 child ,您的 div 元素是。但是,它是第一个 article 元素,因此您可以使用 :first-of-type:

#show-reviews .type-reviews:first-of-type {
width: 50%;
}

此外,您真的不需要在这里使用 !important,因为您的新选择器比旧选择器具有更高的特异性。

供引用:

<div id="show-reviews">
<div ...>...</div> <!-- First child, first of type (div) -->
<article ...>...</article> <!-- Second child, first of type (article) -->
...
</div>

关于html - :first-child selector doesn't work,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21157006/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com