我需要更改悬停按钮的颜色。
这是我的解决方案,但是不起作用。
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; }
a.button a:hover表示“正在悬停的链接是该类链接的子链接button”。
a.button a:hover
button
代替a.button:hover。
a.button:hover