Hover effects not working with IE8(悬停效果不适用于 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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:悬停效果不适用于 IE8


基础教程推荐
- fetch 是否支持原生多文件上传? 2022-01-01
- Bokeh Div文本对齐 2022-01-01
- npm start 错误与 create-react-app 2022-01-01
- 检查 HTML5 拖放文件类型 2022-01-01
- 即使用户允许,Gmail 也会隐藏外部电子邮件图片 2022-01-01
- Bootstrap 模态出现在背景下 2022-01-01
- 原生拖动事件后如何获取 mouseup 事件? 2022-01-01
- Fabric JS绘制具有活动形状的多边形 2022-01-01
- 在 contenteditable 中精确拖放 2022-01-01
- 如何添加到目前为止的天数? 2022-01-01