本文介绍了悬停效果不适用于 IE8的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!
问题描述
我使用 CSS 来改变表格悬停时的颜色
I used CSS for a color change on hover for a table
#tabb tbody tr:hover td{
color:#006;
background:#d0e4f2;
}
这在 Chrome 和 Firefox 中运行良好,但在 Internet Explorer 8 中不会出现悬停效果.
This works fine in Chrome and Firefox, but the hover effect does not happen in Internet Explorer 8.
有没有办法让这个效果也适用于 IE8?
Is there a way to make this effect work with IE8 as well?
推荐答案
应该在 IE8 中可以正常工作.
That should work fine in IE8.
暗中刺伤:
确保您有 a doctype 作为触发标准模式的 HTML 的第一行,如:
Make sure you have a doctype as the very first line of your HTML that triggers Standards Mode, such as:
<!DOCTYPE html>
在 Quirks Mode 中,IE 模拟 5.5 版,不支持 :hover
在 a
以外的元素上.
In Quirks Mode, IE emulates version 5.5, which does not support :hover
on elements other than a
.
这篇关于悬停效果不适用于 IE8的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!
本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!