我在容器div中有兩個DIV,我需要將它們都設置爲適合下面的瀏覽器窗口,但它不適合我的代碼,請建議我一個解決方案設置div高度以適合使用CSS的瀏覽器
我的樣式表的代碼
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
.container {
height: auto;
width: 100%;
}
.div1 {
float: left;
height: 100%;
width: 25%;
}
.div2 {
float: left;
height: 100%;
width: 75%;
}
身體
<body>
<div class="container">
<div class="div1"></div>
<div class="div2"></div>
</div>
使用'min-height',[example](http://jsbin.com/aNICAva/1/edit) – Vucko
如果兩個都需要100%的高度,爲什麼不給'.container'設置'height:100%'? – Harry
OFF-TOPIC:你有什麼創建草圖? – Victor