尝试使用绝对位置创建子 div 以扩展包含相对位置的父 div。
<html>
<head>
<title>Stay in parent</title>
</head>
<body>
<div style="position:relative">
<div>
header
</div>
<div style="position:absolute;">
content<br />
content<br />
content<br />
</div>
</div>
<div id="footer" style="clear:both">
footer
</div>
</body>
</html>
页脚只是停留在内容之上。