gpt4 book ai didi

html - 通过CSS,如何使元素向下移动时页面高度不变

转载 作者:太空宇宙 更新时间:2023-11-04 02:48:26 28 4
gpt4 key购买 nike

在一个页面上,有三个元素:

<body>
<header />
<content />
<footer />
</body>

“header”的 CSS 定义是:

header {
position: fixed;
height: 40px;
}

为了呈现全部内容,我将其 CSS 定义为:

content {
margin-top: 40px;
}

和底部的 CSS:

footer {
position: absolute;
height: 100px;
}

现在,即使“内容”中没有包含任何内容,整个页面的高度也比 100% 屏幕高度长 40px。如何使整个页面高度仍然是屏幕的 100%?多谢!

最佳答案

在“内容”上使用 padding-top 而不是边距。

还建议使用 box-sizing: border-box;

* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html,
body {
height: 100%;
}
header {
position: fixed;
width: 100%;
height: 40px;
background: rgba(255, 0, 0, 0.25);
}
.content {
min-height: 100%;
padding-top: 40px;
background: rgba(0, 255, 0, 0.5);
}
footer {
position: absolute;
bottom: 0;
width: 100%;
height: 50px;
background: rgba(0,0,255,0.5);
}
<body>
<header></header>
<div class="content">
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Consequuntur reprehenderit ratione eligendi debitis, atque facilis odit qui sapiente incidunt neque quod possimus illum alias harum dolorem, esse aperiam! Reprehenderit voluptatibus eos autem vel,
distinctio ullam mollitia dolore est, laborum iste optio eaque illum velit quos illo, harum neque sunt quaerat.
</p>
</div>
<footer></footer>
</body>

请注意...页脚仍在“内容”div 的顶部,并且会遮盖那里的所有内容。对于更灵活的页脚,存在其他选项。

关于html - 通过CSS,如何使元素向下移动时页面高度不变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33434210/

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