【发布时间】:2014-02-25 11:15:47
【问题描述】:
我在本网站页眉的 ie9 中遇到问题:http://www.cheverellwood.co.uk/
包含 h1 标记的 div 被下推到 ie9 以及它出现的页面上的子菜单。在 ie7 和 ie8、firefox、safari 和 chrome 中都可以。
【问题讨论】:
标签: html css internet-explorer-9
我在本网站页眉的 ie9 中遇到问题:http://www.cheverellwood.co.uk/
包含 h1 标记的 div 被下推到 ie9 以及它出现的页面上的子菜单。在 ie7 和 ie8、firefox、safari 和 chrome 中都可以。
【问题讨论】:
标签: html css internet-explorer-9
您可以使用 IE9 特定的 hack 使其在 IE9 中正确显示。将 \0 参数添加到您的 css 类中,例如
:root .test {color: green \0;}
请参阅 http://mynthon.net/howto/-/webdev/CSS-big-list-of-css-hacks.txt 以获取特定于浏览器的黑客列表。
或者使用条件注释
<!--[if IE]> Internet Explorer 9- <![endif]-->
【讨论】: