我正在使用ASP.NET模板並嘗試將我的內容設置爲佔用窗口的整個高度,但我無法實現它。裏面有一個容器和兩個兄弟姐妹。將底部div設置爲高度100%會導致容器溢出。將div高度設置爲窗口高度
我也使用Bootstrap。
我只能將高度百分比降到較低的值,但沒有更好的方法嗎? 我添加了一個屏幕截圖和小提琴: http://jsfiddle.net/ob1g0752/
HTML:
<div style="height:100%; width:100%; border-style:solid; border-width:2px; position:absolute;">
<div style="margin:5px; width:100%; border-style:solid; border-width:2px; border-color:pink;">
test
</div>
<div style="height:100%;width:100%; border-style:solid; border-width:2px; margin:5px; border-color:yellow;">
test
</div>
</div>
<footer style="display:block;">footer</footer>
CSS:
body
{
min-height:100%;
min-width:100%;
}
html
{
height:100%;
}
編輯 對不起,我發佈了一個老版本的小提琴,這是更新的一個。注意黃色邊框溢出容器。 http://jsfiddle.net/ob1g0752/4/
添加高度:100%你的身體選擇。 – Slime
對不起,小提琴不是最新的,請參閱我的編輯http://jsfiddle.net/ob1g0752/4/。 –