1

我在内容换行之外做了一个页脚换行(其他所有内容都在其中)。我想让页脚换行扩展以填充页面的宽度,我希望它固定在底部。这是代码:

页脚包裹{

background-color:#000;
width: auto;

}

页脚 {

margin: auto;
text-align:center;
width:965px;
height:150px;
background-color:#000;
border:#000 inset medium;

}

该网站是 item9andthemadhatters.com,如果您需要任何其他代码或信息,请告诉我。谢谢!!

更新:

html { 填充:0; 高度:100%;宽度:100%;}

正文{边距:-1px 0 0 0; 背景颜色:#FFF;字体系列:calibri;背景图像:url(图像/item9HeaderSideFiller.gif);背景重复:重复-x;填充:0;高度:100%;宽度:100%;}

裹 {

width: 965px;
margin:auto auto;
min-height:462px;
max-height:4000

像素;

页脚包裹{

background-color:#000;
position:absolute;
bottom:0;
width:100%

}

页脚 {

margin: auto;
text-align:center;
width:965px;
height:150px;
background-color:#000;

}

}

4

2 回答 2

2

填满页面

width:100%

要留在页面底部,解决方案可能是

position:absolute;
bottom:0;

请注意,在正文和 html 中,您必须设置

padding:0
height:100%;
于 2011-01-13T21:34:23.667 回答
0

width:100%在 footerWrap 中尝试。另外,固定在底部是什么意思?您的意思是页脚应该始终位于屏幕底部,即使在滚动时也是如此?还是您的意思是它应该始终位于页面底部?

于 2011-01-13T21:35:39.693 回答