Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嘿,我正在尝试获取我的网站,因此它不会垂直滚动并且我现在正在努力滚动一点(最大 20 像素)
网站在这里css : css here
希望你能帮忙
丹佛
你有body { padding-bottom: 20px; }。您的 box-model 设置为传统的 CSS2.1 模型,因此它的“高度”实际上是“100% + 20px”。消除填充,你就设置好了。
body { padding-bottom: 20px; }
您的#containerdiv 的高度为 100%。下面是你的页脚,它也有一些高度。你应该让你的容器不那么高或者把你的页脚放在你的容器里,这样两个元素的总高度就不会超过 100%。
#container