悬停在 IE8 中不起作用,它在悬停时会滑出文本。
这是代码。
HTML
<div class="divCls">
<span class="textColor">Contacts</span>
</div>
CSS
.divCls:hover{
background-color:#E8F7F9 !important;
padding-top: 5px;
padding-bottom: 5px;
}
悬停在 IE8 中不起作用,它在悬停时会滑出文本。
这是代码。
HTML
<div class="divCls">
<span class="textColor">Contacts</span>
</div>
CSS
.divCls:hover{
background-color:#E8F7F9 !important;
padding-top: 5px;
padding-bottom: 5px;
}
在 IE8 中,如果您在 quirks 模式下操作,:hover
则仅支持<a>
元素(其中 a<div>
不支持)。
确保您有一个触发标准模式的 Doctype。
请参阅有关 Quirks 模式的 Wikipedia 文章以进一步阅读。
尝试使用 LVHA 实现链接特异性。请参阅: http: //meyerweb.com/eric/css/link-specificity.html
例子:
A:link {color: blue;}
A:visited {color: purple;}
A:hover {color: magenta;}
A:active {color: red;}