我编写了这种样式来更改鼠标悬停时 div 和文本的颜色。问题出现在带有超链接的文本中。它在 Firefox 和 Chrome 中变得完美,但在 IE 中不起作用。我正在使用版本 10。
在这里需要一些帮助...
就是这种风格...
<style type="text/css">
.buttonstyle {
height:30px;
width:200px;
background-color:#FFF;
font-family:"Arial";
font-weight:bold;
color:#767676;
cursor:pointer;
}
.buttonstyle:hover {
background-color:#007DBA;
font-family:"Arial";
font-weight:bold;
color:#FFF;
}
</style>
HTML:
<div class="buttonstyle"><a href="#">Button</a></div>
这是JSFiddle