Heim > Artikel > Web-Frontend > 如何让div充满整个页面的一个问题_html/css_WEB-ITnose
nbsp;html>
效果②(清除浮动就行):
<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title></title><style type="text/css">html, body, #div1 {width: 100%;margin: 0px;padding: 0px;}</style></head><body><div id="div1" style="background-color:aquamarine;"> <div id="div2" style="width: 95%; height:1500px; margin: 0px auto; background-color: red; overflow:hidden;"> </div></div></body></html>
但这样就不能兼顾效果1了。
实际应用是想做个网页模板,div2放内容,高度不确定,当内容较少时希望div1能充满整个页面;内容多时div1被撑开。
所以希望同时兼顾两种效果。
<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title></title><style type="text/css">html, body{ width: 100%; height: 100%; margin: 0px; padding: 0px;}#div1{ width: 100%; min-height: 100%; }</style></head><body><div id="div1" style="background-color:aquamarine;"><div id="div2" style="width: 95%; height:1500px; margin: 0px auto; background-color: red;"></div></div></body></html>
三楼正解,受教了,非常感谢!