将页脚换行扩展到页面宽度

发布于 2024-10-11 18:46:29 字数 1011 浏览 6 评论 0原文

我在内容包装之外制作了页脚包装(其他所有内容都在里面)。我想让页脚换行延伸以填充页面的宽度,并且我希望将其固定在底部。代码如下:

footerWrap {

background-color:#000;
width: auto;

}

footer {

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(images/item9HeaderSideFiller.gif); 背景重复:重复-x; 填充:0; 高度:100%; 宽度:100%; }

换行 {

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

px;

页脚换行 {

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

}

页脚 {

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

}

}

I've made a footer wrap outside the content wrap (which everything else is in). I would like to make the footer wrap extend to fill the width of the page and I would like it to be fixed on the bottom. Here's the code:

footerWrap {

background-color:#000;
width: auto;

}

footer {

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

}

The website is item9andthemadhatters.com please let me know if you need any other code or info. Thanks!!

update:

html {
padding:0;
height:100%;
width: 100%;
}

body{
margin: -1px 0 0 0;
background-color:#FFF;
font-family: calibri;
background-image:url(images/item9HeaderSideFiller.gif);
background-repeat: repeat-x;
padding:0;
height:100%;
width: 100%;
}

wrap {

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

px;

footerWrap {

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

}

footer {

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

}

}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

涙—继续流 2024-10-18 18:46:29

填充页面

width:100%

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

position:absolute;
bottom:0;

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

padding:0
height:100%;

To fill the page

width:100%

To stay at the bottom of the page a solution could be

position:absolute;
bottom:0;

notice that in both body and html you have to set

padding:0
height:100%;
无语# 2024-10-18 18:46:29

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

Try width:100% in footerWrap. Also, what do you mean by fixed on the bottom? Do you mean the footer should always be at the bottom of the screen, even when scrolling? Or do you mean it should always be at the bottom of the page?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文