gpt4 book ai didi

css - 使用带有两个单独页脚的粘性页脚的问题

转载 作者:行者123 更新时间:2023-11-28 03:20:22 24 4
gpt4 key购买 nike

我目前正在自学网络开发。我正在从头开始重新创建一个网站。它应该看起来像这样:

===========nav bar=============

=========website body===========

===========footer #1============

===========footer #2============

我的基本代码结构是:

<body class="main-body">
<form id="form1">
<footer id="footerContainer">
<div class="ContainerBlock">
<section class="big-blue">
<div class="Container">
<div class="rows">
<div>(these are columns)</div>
<div>(these are columns)</div>
<div>(these are columns)</div>
<div>(these are columns)</div>
</div>
</div>
</section>
<section class="copyrights">
<div class="container">
<div class="rows">
<div>
<small>copyright text</small>
</div>
<div>
<a href="a link!!!">
<img alt="im an image" src="im an image"/>
</a>
</div>
</div>
</div>
</section>
</div>
</footer>
</form>
</body>

页脚 1 是列中列出的页面链接列表,页脚 2 是版权信息和一些交互式图像。页脚 1 是一个纯蓝色 block ,我需要它位于页脚纯白色 block 的顶部。

我试过使用:

.footer
{
position: absolute;
bottom:0;
}

和(这是当前设置的):

.footer
{
position: relative;
bottom:0;
}

和:

.footer
{
position: fixed;
bottom:0;
}

和:

#footer
{
position: absolute;
bottom:0;
}

我一直在摆弄改变我的部分和页脚的位置。我试过更改填充值,但无论我做什么,它都坚定地位于页面中间。

如果我将两个页脚都设置为:

position:relative;
bottom: 0;

然后页脚 1 压碎了页脚 2,看起来像垃圾。有什么干净的方法可以让两者都粘在我的页面底部,无论它有多长,而不会破坏我的版权信息?

最佳答案

.footer 引用类为footer

的元素

#footer 引用id为footer

的元素

footer 指的是页脚标签

尝试

footer {
position: fixed;
bottom: 0;
}

关于css - 使用带有两个单独页脚的粘性页脚的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45245140/

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