拥有 100% 标头和包装并包含固定内容的最有效方法?

发布于 2024-11-04 05:30:12 字数 111 浏览 0 评论 0原文

拥有 100% 页眉、固定宽度内容和 100% 页脚的最有效方法是什么?

我试图将我的 div 限制到最大,但现在我陷入困境......

有人帮忙吗?

非常感谢

what is the most efficient way of having a 100% header, then a fixed width content, and a 100% footer?

I'm trying to limit my divs to the maximum, but now i'm quite stuck...

anybody help?

Thx a lot

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

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

发布评论

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

评论(1

温柔戏命师 2024-11-11 05:30:12

这是最简单的版本:

<div class="header">
    <p>Header</p>
</div>
<div class="main">
    <p>Content</p>
    <p>Content</p>
    <p>Content</p>
</div>
<div class="footer">
    <p>Footer</p>
</div>

CSS:

div {
    margin:0 auto;
}
.main{
    width:400px;
}

http://jsfiddle.net/Madmartigan/adkfF/3/

这是一个页眉和页脚内部内容固定宽度以与主要内容对齐的版本:

http: //jsfiddle.net/Madmartigan/adkfF/1/

3 个 div 就这么简单,我假设你想要最小化你的 div,而不是“限制我的 div最大”:)

Here is the simplest version:

<div class="header">
    <p>Header</p>
</div>
<div class="main">
    <p>Content</p>
    <p>Content</p>
    <p>Content</p>
</div>
<div class="footer">
    <p>Footer</p>
</div>

CSS:

div {
    margin:0 auto;
}
.main{
    width:400px;
}

http://jsfiddle.net/Madmartigan/adkfF/3/

Here is a version with the header and footer's inner content fixed width to align with the main content:

http://jsfiddle.net/Madmartigan/adkfF/1/

3 divs is just about as simple as you can go, I assumed you wanted to minimize your divs and not "limit my divs to the maximum" :)

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