目前我正在使用 ie9 来呈现我的网页。在使用 'margin: 0 auto' css 属性来满足我的一项要求时,它不起作用。所以我浏览了很多并找到了原因,我没有指定 doctype 以关闭 quirks 模式。所以我添加了链接中指定的文档类型。结果,我的网页似乎没有按原样加载。它省略了一些与之绑定的 css 和脚本 [jquery]。
当我尝试通过删除文档类型来加载网页时,它会正常显示所有内容,但 margin: 0 auto 似乎不起作用..
顺便说一句,这个链接指出 jquery 将对关闭和打开的怪癖模式做出不同的反应。所以我也尝试更改我的脚本。但同样的结果发生了。
在这个阶段我很困惑。任何线索。?
编辑:
HTML:
<html>
<head>
<title>Rajaprabhu</title>
<link rel="stylesheet" type="text/css" href="css/PrabhuCss.css">
</head>
<body>
<div id="DivMenu">
<div id="DivLogo">R</div>
</div>
<div id="DivMain">
<div id="DivHeader">
</div>
<div id="DivContent">
<div id="DivSlider">
<div id="DivHome">
</div>
<div id="DivSkills">
</div>
</div>
</div>
<div id="DivFooter">
</div>
</div>
</body>
</html>
CSS:[PrabhuCss.css]
#DivMain
{
position: relative;
width:100%;
height:100%;
z-index:1;
}
#DivFooter
{
position:absolute;
width:100%;
height:5%;
bottom:0%;
left:0%;
background-image: url('../Images/ImgHeaderFooter.jpg');
z-index:5;
border-top: 2px solid #2F2E2E;
}
#DivHeader
{
position:absolute;
width:100%;
height:10%;
top:0%;
left:0%;
background-image: url('../Images/ImgHeaderFooter.jpg');
z-index:6;
border-bottom: 2px solid #2F2E2E;
}
#DivMenu
{
position:absolute;
border-radius: 999px;
background: #ccc;
border: 2px solid #2F2E2E;
cursor: pointer;
z-index:7;
text-align:center;
width: 4%;
height: 8%;
left: 48%;
top: 6%;
}
#DivLogo
{
font-family: 'Wendy One', sans-serif;
font-size:35px;
position:relative;
top:50%;
margin-top: -18px;
}
#DivContent
{
position:relative;
width:100%;
height:85.02%;
top:10%;
left:0%;
z-index:2;
overflow: hidden;
}
#DivSlider
{
position:absolute;
width:100%;
height:100%;
z-index:3;
}
#DivHome
{
width:100%;
height:50%;
z-index:4;
background-image: url('../Images/ImgBackground.jpg')
}
#DivSkills
{
width:100%;
height:50%;
z-index:4;
background-image: url('../Images/ImgBackground.jpg')
}
body
{
margin:0;
padding:0;
border: 0;
overflow:hidden;
}
如果我<!doctype html>
在我的 Html 顶部使用,页面显示不正确。
但是没有它,渲染就不会有任何问题。