gpt4 book ai didi

css - 背景 : color does not work in IE8

转载 作者:技术小花猫 更新时间:2023-10-29 11:17:49 26 4
gpt4 key购买 nike

body {
background: gray;
font-family: sans-serif;
width: 960px;
margin: auto;
}

header {
background: green;
border: 10px solid black;
}

nav {
margin-top:10px;
background: #62D99C;
border-radius: 10px;
padding: 10px;
}

页眉和导航背景在 IE8 中不工作。它确实适用于 Chrome 和 FF。我应该怎么办?谢谢!

最佳答案

您应该将 display:block 应用于标题和导航元素:

header {
display: block;
background: green;
border: 10px solid black;
}

nav {
display: block;
margin-top:10px;
background: #62D99C;
border-radius: 10px;
padding: 10px;
}

看来你还需要包含以下js:

<!--[if lt IE 9]>
<script>
document.createElement('header');
document.createElement('nav');
</script>
<![endif]-->

可以在这里找到原因:

http://tatiyants.com/how-to-get-ie8-to-support-html5-tags-and-web-fonts/

简而言之,默认情况下,IE8 不支持 HTML5 元素,但通过执行此 javascript (仅适用于 IE8 或更低版本),它开始识别这些元素。大多数开发人员使用某种形式的 html5 shim 来解决这个问题。

http://code.google.com/p/html5shim/

关于css - 背景 : color does not work in IE8,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13439831/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com