我正在尝试在不同的类上使用单独的CSS LINK样式。当我" HOVER"在链接上。我怎么能解决这个问题,所以当我关注链接时,没有不同的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;
}
答案 0 :(得分:1)
对不起,我被页面的其他问题分心了。答案就在您分享的代码中:
.Buttons a:Link ,a:Visited,a:Active,a:Hover
和
.menuButton a:Link ,a:Visited,a:Active, a:Hover{
读取: - 。按钮a:链接 - 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 {
正如你所做的那样是将样式应用于每一个悬停。