gpt4 book ai didi

Css 第一个 child

转载 作者:太空宇宙 更新时间:2023-11-04 09:08:01 27 4
gpt4 key购买 nike

标签 first child 而不是只改变我的第一个元素的颜色改变了所有这些 http://codepen.io/asaf147369/pen/rjELxq

    nav ul li a {
color: white;
text-transform: uppercase;
text-decoration: none;
font-size: 14px;
}
nav ul li a:first-child
{
color:#00e0d0;
}

有什么帮助吗?

最佳答案

您需要选择 li,它是第一个子标签,因为 anchor 标记始终是每个包含 li 的第一个子标签 .. 所以所有“a”标签都被选中

li:first-child a {
color: red
}
<ul>

<li><a> one </a></li>
<li><a> one </a></li>
<li><a> one </a></li>
<li><a> one </a></li>


</ul>

关于Css 第一个 child ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42329951/

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