gpt4 book ai didi

CSS :first child on link class not working

转载 作者:太空宇宙 更新时间:2023-11-04 12:13:05 24 4
gpt4 key购买 nike

我有这两个元素:

<div class="navbar-header">
<a href="#" class="navbar-brand collapse-award"></a>
<a href="#" class="navbar-brand collapse-award"></a>
</div>

我正在尝试将 :first-child :last-child 应用于这些元素,但它不起作用是否 first 和 last child 仅适用于列表元素?

.navbar-header .collapse-award:first-child {
max-height: 50px;
}

.navbar-header .collapse-award:last-child {
max-height: 80px;
margin-top: -10px;
}

最佳答案

请参阅工作示例:http://codepen.io/anon/pen/QwVErQ

<div>
<a href="#" class="collapse-award">item 1</a>
<a href="#" class="collapse-award">item 2</a>
</div>

.collapse-award:last-child {
max-height: 80px;
margin-top: -10px;
color:#FF0000;
}
.collapse-award:first-child {
max-height: 50px;
color:#00FF00;
}

关于CSS :first child on link class not working,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28905724/

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