我在 IE10 应用我为 HTML5 元素指定的 CSS 样式时遇到问题(以及他们的孩子在使用选择器中的 HTML5 元素标签名称定位孩子时),所以我把它分解成一个更简单的例子并放在一起简单JSFiddle 示例来演示该问题,但是当我测试 JSFiddle 时,IE10 决定正确应用样式。因此,我获取了 JSFiddle 生成的 iframe 的确切源代码,并将其复制到我的服务器上托管的文件中,可惜它未能再次正确应用样式。
JSFiddle 的来源:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title> - jsFiddle demo</title>
<script type='text/javascript' src='/js/lib/dummy.js'></script>
<link rel="stylesheet" type="text/css" href="/css/result-light.css">
<style type='text/css'>
header, nav, main, footer {
display: block;
background: gray;
padding: 10px;
margin: 1px;
}
nav ul {
list-style: none;
padding: 0;
margin: 0;
}
nav ul li {
display: inline-block;
}
nav ul li a {
color: white;
text-decoration: none;
padding: 10px;
}
</style>
<script type='text/javascript'>//<![CDATA[
window.onload=function(){
}//]]>
</script>
</head>
<body>
<header>
<img src="http://placehold.it/300x80&text=Logo" />
</header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<main>
<p>This is filler content inside the <code><main></code> element. The <code><header></code>, <code><main></code> and <code><footer></code> should each have a gray background and be displayed as a block.</p>
</main>
<footer>
<p>Copyright © 2013, All Rights Reserved</p>
</footer>
</body>
</html>
IE10有什么问题?它不可能是代码,因为它在 iframe 中运行良好,或者 iframe 是否得到与其父页面相同的处理?
是什么导致 IE10 在这里跳闸?它可能与服务器有关吗?这没有多大意义,但这是一个奇怪的问题。
当然,任何修复肯定会受到赞赏。