gpt4 book ai didi

html - CSS: parent 的最后一个 child

转载 作者:太空狗 更新时间:2023-10-29 13:38:48 26 4
gpt4 key购买 nike

:last-child当所有“子”元素都相同时效果很好(即:所有 <p> 或所有 <li> 并且规则应用于该类型的子元素。

但是我如何使用 CSS 选择包含不同元素的父元素中的最后一个“子”元素?

例如,在此示例中,我如何将规则应用于 .parent选择其中的最后一个对象(div)?

.parent:last-child {
background-color: red;
}
<div class="parent">

<p>First child</p>
<input type="text" placeholder="Second child" />
<div>Third child</div>

</div>

最佳答案

您可以使用 .parent > *:last-child 或仅使用 .parent > :last-child

An asterisk (*) is the universal selector for CSS. It matches a single element of any type. Omitting the asterisk with simple selectors has the same effect.

.parent > *:last-child {
background-color: red;
}
<div class="parent">
<p>First child</p>
<input type="text" placeholder="Second child" />
<div>Third child</div>
</div>

关于html - CSS: parent 的最后一个 child ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41813466/

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