如何设置页面的具体高度
How to set specific height of page
我在 Wordpress 上设置的网页有问题。我想在那里设置固定高度,因此页脚始终可见并且左侧没有滚动条。我已经尝试了几种在网上找到的方法,但没有任何效果。你有什么建议吗?
在你的 .footer-bottom 上使用这个 class
.footer-bottom {
position: fixed;
width: 100%;
bottom: 0;
z-index: 10;
}
我在 Wordpress 上设置的网页有问题。我想在那里设置固定高度,因此页脚始终可见并且左侧没有滚动条。我已经尝试了几种在网上找到的方法,但没有任何效果。你有什么建议吗?
在你的 .footer-bottom 上使用这个 class
.footer-bottom {
position: fixed;
width: 100%;
bottom: 0;
z-index: 10;
}