gpt4 book ai didi

css - 按钮 a :hover and background color

转载 作者:太空宇宙 更新时间:2023-11-03 21:04:23 26 4
gpt4 key购买 nike

我的按钮有问题。当我想点击我的按钮时,通常“蓝色”按钮的颜色应该变为黑色。

好像我的底色(黑色)不完整???

.more-information{
position:absolute;
height: 33px;
width: 158px;
background-color: #005dbe;
color: white;
line-height: 33px;
border:none;
padding:7px 0 7px 0;
border-radius:20px;
text-transform: uppercase;
text-align: center;
font-weight: bold;
}

.more-information a{
color: #f2f2f2;
text-decoration: none;
display: block;
height: 100%;
width: 100%;

}

.more-information a:hover{
background-color: black;
color: white;
}
<div class="more-information"><a href="#">Login</a></div>

最佳答案

我将大部分 CSS 从外部 div 移到了 <a>相反,现在它的行为符合您的预期。

.more-information{
position:absolute;
height: 33px;
width: 158px;
}

.more-information a{
color: #f2f2f2;
text-decoration: none;
display: block;
background-color: #005dbe;
color: white;
line-height: 33px;
border:none;
padding:7px 0 7px 0;
border-radius:20px;
text-transform: uppercase;
text-align: center;
font-weight: bold;
}

.more-information a:hover{
background-color: black;
color: white;
}
<div class="more-information"><a href="#">Login</a></div>

关于css - 按钮 a :hover and background color,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55407430/

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