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.
我正在开发一个网站,并且我在内容中有报告,当内容溢出时,无论分辨率如何,我都希望有一个滚动条。
我为页眉和页脚使用了 100% 的宽度,并且我有一个背景重复 1px 条。但是当内容溢出并且当用户滚动查看页眉和页脚部分的数据时,我会看到空白,因为它们没有伸展。
我要他们伸展到卷轴尽头
我该如何摆脱这个问题?
body您可以通过设置toposition:relative和来解决这个问题float:left;。
body
position:relative
float:left;
这是一个工作示例。
body { position:relative; float:left; }