gpt4 book ai didi

html - 如何选择具有特定类的最后一个元素,而不是父元素中的最后一个子元素?

转载 作者:技术小花猫 更新时间:2023-10-29 11:25:49 28 4
gpt4 key购买 nike

<div class="commentList">
<article class="comment " id="com21"></article>
<article class="comment " id="com20"></article>
<article class="comment " id="com19"></article>
<div class="something"> hello </div>
</div>

我想选择#com19 ?

.comment {
width:470px;
border-bottom:1px dotted #f0f0f0;
margin-bottom:10px;
}

.comment:last-child {
border-bottom:none;
margin-bottom:0;
}

只要我有另一个 div.something 作为 commentList 中实际的最后一个子项,这就不起作用。在这种情况下是否可以使用 last-child 选择器来选择 article.comment 的最后一次出现?

jsFiddle

最佳答案

:last-child 仅当相关元素是容器的最后一个子元素而不是特定类型元素的最后一个时才有效。为此,您需要 :last-of-type

http://jsfiddle.net/C23g6/3/

根据@BoltClock 的评论,这只是检查最后一个 article 元素,而不是最后一个类为 .comment 的元素。

body {
background: black;
}

.comment {
width: 470px;
border-bottom: 1px dotted #f0f0f0;
margin-bottom: 10px;
}

.comment:last-of-type {
border-bottom: none;
margin-bottom: 0;
}
<div class="commentList">
<article class="comment " id="com21"></article>

<article class="comment " id="com20"></article>

<article class="comment " id="com19"></article>

<div class="something"> hello </div>
</div>

关于html - 如何选择具有特定类的最后一个元素,而不是父元素中的最后一个子元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7298057/

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