gpt4 book ai didi

html - 使 div 扩展到全高 - 30px

转载 作者:太空宇宙 更新时间:2023-11-04 15:03:10 25 4
gpt4 key购买 nike

有没有一种简单的方法只用 css 使 div 扩展到页面的整个高度 - 30px。我在页面底部有一个 30px 高的“页脚”,并设置为 position: fixed; bottom: 0px; 我不希望页面其余部分的任何内容显示在此页脚后面。

最佳答案

<body>
<div id="wrapper">
<div id="header">Header added just for demonstration purposes</div>
<div id="content">Main content goes here</div>
<div id="footer">And this is my footer</div>
</div>

现在的风格

html, body {
margin: 0;
padding: 0;
height: 100%;
}

#wrapper {
height: auto !important;
min-height: 100%;
height: 100%;
position: relative; /* Required to absolutely position the footer */
}

#footer {
height: 50px; /* Define height of the footer */
position: absolute;
bottom: 0; /* Sit it on the bottom */
left: 0;
width: 100%; /* As wide as it's allowed */
}

#content {
padding-bottom: 50px; /* This should match the height of the footer */
}

关于html - 使 div 扩展到全高 - 30px,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16220613/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com