gpt4 book ai didi

HTML/CSS : Content goes underneath a fixed footer

转载 作者:太空狗 更新时间:2023-10-29 15:13:01 25 4
gpt4 key购买 nike

下面的 html 页面包含一个页脚(位置:固定)和一个“工作表”(position:absolute)。

我的问题:向下滚动时如何防止工作表的底端隐藏在页脚下方?

我对 padding 和 margin 的所有尝试都失败了......(请只使用 html/css 解决方案。)

CSS

   body {        
background: green; }

.Background {
top: 0px;
right: 0px; }

.Footer {
position: fixed;
bottom: 0;
left: 0px;
height: 30px;
width: 100%;
background: orange;
padding: 0 10px 0 10px; }

.Sheet {
position: absolute;
top: 100px;
left: 25px;
border-style: solid;
border-width: 2px;
padding: 20px;
background: red; }

HTML

<body>

<div class="Background">
Background</div>

<div class="Sheet">
<div style="line-height: 200px">
Sheet<br>
Sheet<br>
Sheet<br></div>
Sheet<br>
Sheet</div>

<div class="Footer">
Footer </div>

</body>

最佳答案

margin-bottom 赋予工作表,等于或大于页脚固定高度

.Sheet {
margin-bottom: 35px; // equal or greater than footer height
}

更新如果你想放在前面,那么添加 z-index 属性。

.Sheet {
margin-bottom: 35px; // equal or greater than footer height
z-index: 999; // use suitable maximum to bring in front all
}

关于HTML/CSS : Content goes underneath a fixed footer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41633953/

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