gpt4 book ai didi

html - 在 div 悬停时更改链接颜色

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

我的问题是,当我将鼠标悬停在我的 div 上时,它不会将链接颜色更改为我想要的颜色。它只是保持其默认的黑色。

我怎样才能做到当我将鼠标悬停在 thumbnail-cointainer div 上时,它会改变链接的颜色?

<div class="thumbnail-container">
<a href="">Text Here</a>
</div>

CSS:

a {
color: #000000;
text-decoration: none;
}

a:hover,
a:focus {
color: #005580;
text-decoration: underline;
}

.thumbnail-container {
width: 220px;
margin-top: 15px;
margin-right: 20px;
float: left;
}

.thumbnail-container:hover {
color: #0088cc;
}

最佳答案

问题是选择器特异性。也选择 anchor :

.thumbnail-container:hover,
.thumbnail-container:hover a {
color: #0088cc;
}

或者根据您的需要,您可以使用inherit。只需添加:

.thumbnail-container a {
color:inherit;
}

关于html - 在 div 悬停时更改链接颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16493763/

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