我需要在悬停时更改按钮的颜色。
这是我的解决方案,但它不起作用。
a.button {
display: -moz-inline-stack;
display: inline-block;
width: 391px;
height: 62px;
background: url("img/btncolor.png") no-repeat;
line-height: 62px;
vertical-align: text-middle;
text-align: center;
color: #ebe6eb;
font-family: Zenhei;
font-size: 39px;
font-weight: normal;
font-style: normal;
text-shadow: #222222 1px 1px 0;
}
a.button a:hover{
background: #383;
}
答案 0 :(得分:37)
a.button a:hover
表示“正在悬停的链接是与button
类链接的子级”。
改为a.button:hover
。
答案 1 :(得分:12)
似乎您的选择器错误,请尝试使用:
a.button:hover{
background: #383;
}
您的代码
a.button a:hover
表示它将使用类按钮在a
内搜索a
元素。
答案 2 :(得分:1)
var grouped = _.groupBy(clientSideViewModel, function (obj) {
return obj.categorie.substr(0, 1).toUpperCase();
});
适合我,但在我的情况下
a.button:hover{
background: #383; }