我在一个网站上工作,除了 IE,在 Firefox、Chrome 等中一切都很好。我正在使用 Ryan Fait 的 Sticky 页脚方法,我的主 div 上有以下样式:
#bigcontent{
width: 920px;
margin: 0 auto;
padding: 20px;
background-color: #f0f0f0;
/* etc etc */
}
页脚代码:
.footer{
background-color: #585858;
color: #fafafa;
padding-top: 20px;
position: absolute;
left: 0;
right: 0;
bottom: 0;
min-height: 220px;
height: auto;
width: 100%;
box-sizing: border-box;
-webkit-box-shadow: inset 0 4px 4px -2px #333;
-moz-box-shadow: inset 0 4px 4px -2px #333;
box-shadow: inset 0 5px 5px -2px #333;
}
我使用<!DOCTYPE html>
(html5 doctype)我真的不知道问题是什么。
最奇怪的是。我的主页居中很好。我不使用该页面上的#bigcontent,所以它应该是那个特定div的问题。
它的外观截图:
-- 删除的图片 --