gpt4 book ai didi

html - 固定页脚 - 如何阻止页面内容但显示背景颜色?

转载 作者:行者123 更新时间:2023-11-28 01:50:38 26 4
gpt4 key购买 nike

这个问题很难解释。我有一个固定的页脚,顶部有一个 10px 的边框。我需要 10px 的边框来屏蔽文本和图像等页面内容,并且只显示下方内容的背景颜色。

有没有办法做到这一点?我正在使用 Bootstrap 。

JSFiddle

div.customfooter {
position:fixed;
left: 0;
bottom: 0;
width: 100%;
z-index: 500;
height: 100px;
background-color: green;
border-top: 10px solid transparent;
}

编辑:下方内容的背景颜色在整个页面中发生变化

最佳答案

您将 div:s 与 z-index 堆叠在一起。通常你需要至少 2 个 div 才能堆叠它们。您基本上需要添加另一个 div 并将该 div 设置为相对位置并添加 z-index。您计划置于“顶部”的 div 应具有最高的 z-index 值。

请看下面的代码片段:

.footer {
position: fixed;
z-index: 2;
background-color: black;
height: 50px;
width: 100%;
}

.content {
position: relative;
z-index: 1;
background-color: red;
height: 80px;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>

<div class="footer"></div>
<div class="content">
1<br /><br />
2<br /><br />
3<br /><br />
4<br /><br />
5

</div>


</body>
</html>

关于html - 固定页脚 - 如何阻止页面内容但显示背景颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49956217/

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