我被一个问题困扰了很长一段时间。我已经用谷歌搜索并尝试了几乎所有的响应,但没有一个有效。我有一个 PHP 页面,它具有以下布局
<div id="wrapper">
<div id="header"/>
<div id="content"/>
<div id=footer/>
</div>
现在内容 div 的内容来自 Db,并且通常占用比浏览器窗口大小更多的高度。
这是我使用的 CSS
#footer {
color: #707070;
clear: both;
min-height: 100px;
}
#content {
width: 100%;
min-height: 400px;
margin-bottom: 25px;
}
但是当那个 div 的大小增加时,页脚不会移动到它下面,而是页脚显示在内容 div 的中间,但在它下面 1 层。谁能帮我?