即使在较小的页面上,如何使版权页脚保留在底部
//CSS
footer {
position: relative;
height: 300px;
width: 100%;
}
p.copyright {
position: absolute;
width: 100%;
line-height: 10px;
text-align: center;
bottom:0;
}
//HTML
<footer>
<p class="copyright">© Copyright 2022</p>
</footer>
我的问题是版权标志使我的单页变得更长,我猜是由于页脚的高度 - 但是每当我减少这个时,它就会将版权标志扔到页面中间,并留出一个空白部分下。无论页面大小如何,如何使我的版权保留在底部中间?
//CSS
footer {
position: relative;
height: 300px;
width: 100%;
}
p.copyright {
position: absolute;
width: 100%;
line-height: 10px;
text-align: center;
bottom:0;
}
//HTML
<footer>
<p class="copyright">© Copyright 2022</p>
</footer>
My issue is the copyright logo is making my single page into more length, i presume due to the height of the footer - however whenever i reduce this its throwing the copyright into the middle of the page with a section blank underneath. How do i get my copyright to stay on the bottom middle no matter the page size?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
删除相对位置和绝对位置
remove the position relative and absolute
将 Flex 显示到中心,删除高度添加另一个 div,将段落放置在底部
CSS:
至于 html 侧
已更新
Display flex to center, remove height add another div which will position paragraph on bottom
CSS:
As for html side
Updated