【发布时间】:2022-01-10 16:55:36
【问题描述】:
我在 R 中使用 Distill 创建了一个网站,但我注意到如果没有足够的内容,页脚会在页面的中间浮动。如何将页脚固定到每一页的底部?
【问题讨论】:
我在 R 中使用 Distill 创建了一个网站,但我注意到如果没有足够的内容,页脚会在页面的中间浮动。如何将页脚固定到每一页的底部?
【问题讨论】:
尝试将其添加到您的样式表中。
要将页脚固定在网页底部,您可以使用 position: fixed like I have ( Look here )。
#footer {
/* Look here*/ position: fixed;
padding: 10px 10px 0px 10px;
bottom: 0;
width: 100%;
height: 40px;
}
【讨论】:
footer {
width: 100%;
position: fixed;
bottom: 0;
left: 0;
right: 0;
}
【讨论】: