gpt4 book ai didi

css - 页脚始终位于移动设备和桌面设备的底部 CSS

转载 作者:太空宇宙 更新时间:2023-11-04 08:04:22 24 4
gpt4 key购买 nike

我正在寻找如何在移动设备和桌面设备的页面底部添加页脚,我确实尝试过

    .footer
{
height: 40px;
width:100%;
background-color: #ffffff;
opacity: 1;
border-top:1px solid #9a9696;
position: relative;
right: 0;
bottom: 0;
left: 0;
}

然而这似乎不起作用,页面底部和页脚之间似乎有空隙

最佳答案

删除相对并添加固定。

html {
height: 100%;
box-sizing: border-box;
}
body {
position: relative;
margin: 0;
padding-bottom: 6rem;
min-height: 100%;
}

.footer {
position: absolute;
right: 0;
bottom: 0;
left: 0;
padding: 1rem;
background-color: #efefef;
text-align: center;
}

关于css - 页脚始终位于移动设备和桌面设备的底部 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46776790/

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