它适用于Firefox,Safari和Chrome,但不适用于IE。我尝试给出一个width,然后给出margin-left:auto;margin-right:auto;请帮助。

这是链接
http://www.ellenselbiedesign.com/public/testing/index.html

这是我的CSS

* {
padding: 0px;
margin: 0px;
}

.wrapper { min-height: 100%; height: auto !important; height: 100%; margin: 0 auto -250px;
background: #aad3d9; /* old browsers */
background: -moz-linear-gradient(top, #80BCC5 0%, #ffffff 100%); /* firefox */

background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#80BCC5), color-stop(100%,#ffffff)); /* webkit */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80BCC5', endColorstr='#ffffff',GradientType=0 ); /* ie */ } /* corresponds to height of #footer */

#body-wrapper {
height: 100%;
width: 100%;
}

#header {
width: 960px;
margin-left:auto;
margin-right:auto;
}

#header img {
padding-top: 15px;
}

#header p{
color: #784f78;
font-size: 15px;
font-family: Arial, Arial, Helvetica, sans-serif;
font-weight:bold;
text-align:right;
margin-top: -33px;
line-height:90%
}

最佳答案

<!-- https://stackoverflow.com/questions/4657553/how-to-get-css3-gradient-to-span-the-height-of-the-entire-page-not-just-the-view -->

恭喜你您的IE现在处于Quirks模式。在Quirks模式下,IE的行为类似于IE5.5,因此它不支持margin: 0 auto。尝试删除<!DOCTYPE>之前的注释,因为<!DOCTYPE>之前的注释导致IE使用Quirks Mode。

07-25 20:59
查看更多