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.
我有一个高度为 2112px 的容器,其中有一个 div 框(宽度:800px 和高度:1200px),但是当我将 min-height 设置为 1200px 并将 height 设置为 auto 时,我的页脚会重叠。
有没有办法让页脚随着尺寸的增加浮到底部?
使用clear属性来避免这种情况:
footer { clear: both; }