gpt4 book ai didi

css - 悬停时按钮颜色不变

转载 作者:行者123 更新时间:2023-11-28 06:08:15 25 4
gpt4 key购买 nike

我希望悬停时按钮中的链接颜色为黄色,但它似乎不起作用,因为悬停时文本仍然是白色。

html:

<button class="headerbutton headerbutton-style">
<a href="#">Learn More</a>
</button>

CSS:

a, .headerbutton {
-webkit-transition: all 0.2s ease-in;
-moz-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
}

.headerbutton {
font-family: "Open Sans";
font-weight: 400;
font-size: 12pt;
border-radius: 20px;
cursor: pointer;
padding: 15px 25px;
}

.headerbutton-style {
background-color: #FAD059;
border: 2px solid white;
}

.headerbutton-style:hover {
background-color: white;
color: #FAD05A;
}

.headerbutton a {
color: white;
text-decoration: none;
}

.headerbutton a:hover {
color: #FAD05A;
text-decoration: none;
}

最佳答案

改变这个规则

.headerbutton a:hover {
color: #FAD05A;
text-decoration: none;
}

对此

.headerbutton:hover a {
color: #FAD05A;
text-decoration: none;
}

然后它就可以工作了。看这个http://codepen.io/anon/pen/RaLwEB

关于css - 悬停时按钮颜色不变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36340100/

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