gpt4 book ai didi

html - CSS :Hover is messing up

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

我试图在不同的类上使用单独的 CSS LINK 样式。当我在链接上“悬停”时,链接会乱七八糟。我该如何解决这个问题,以便当我将鼠标悬停在链接上时不会显示不同的 css 样式?

这是相关的 CSS。

.menuButton {
display: block;
color: #FFFFFF;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-weight: normal;
text-transform: uppercase;
background-image: url(../images/menuItems/Rosary-Bead-Icon.png);
background-position: left center;
background-repeat: no-repeat;
padding-left: 2.7em;
margin-left: 15px;
float: left;
}
.menuButton a:Link ,a:Visited,a:Active, a:Hover{
display: block;
color: #FFFFFF;
font-size: 1.1em;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-weight: normal;
text-transform: uppercase;
background-position: left center;
background-repeat: no-repeat;
text-decoration: none;
}

.Buttons a:Link ,a:Visited,a:Active,a:Hover{
text-decoration: none;
color: #FFF;
background-image: url(../images/menuItems/buttons/largeBlueUp.png);
height: 57px;
width: 250px;
font-family: Tahoma, Geneva, sans-serif;
font-size: 1.1em;
color: #FFF;
text-decoration: none;
line-height: 55px;
background-repeat: no-repeat;
display: block;
text-align: center;
}

最佳答案

很抱歉,我被页面的其他问题分散了注意力。答案就在您分享的代码中:

.Buttons a:Link ,a:Visited,a:Active,a:Hover

.menuButton a:Link ,a:Visited,a:Active, a:Hover{

阅读: - .Buttons a:链接 - a:访问过 - 一个:主动 - a:悬停

更改为:

.Buttons a:Link, .Buttons a:Visited, .Buttons a:Active, .Buttons a:Hover {

.menuButton a:Link, .menuButton a:Visited, .menuButton a:Active, .menuButton a:Hover {

正如您所做的那样,将样式应用于悬停的每个 a。

关于html - CSS :Hover is messing up,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22853187/

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