gpt4 book ai didi

CSS 继承 : Overriding a parent selector that is a descendant selector

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

如何在不更改或删除父选择器的情况下使此链接使用子选择器? (我希望链接是蓝色的。)

<html>
<head>
<style>
.parent a { color:Red; }
.child { color:Blue; }
</style>
</head>
<body>
<div class="parent">
<a class="child" href="http://www.stackoverflow.com">
stackoverflow
</a>
</div>
</body>
</html>

令我惊讶的是,在这种情况下,父级覆盖了子级!

最佳答案

使用a.child作为选择器。

<html>
<head>
<style>
.parent a { color:Red; }
a.child { color:Blue; }
</style>
</head>
<body>
<div class="parent">
<a class="child" href="http://www.stackoverflow.com">
stackoverflow
</a>
</div>
</body>
</html>

关于CSS 继承 : Overriding a parent selector that is a descendant selector,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2345003/

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