1
A
回答
1
在兩者上設置位置。
#ParentDiv {
position:relative;
height:auto;
}
#ChildDiv {
position:absolute;
/* top/left/right force it to dimensions of parent, if needed */
top:0;
left:0;
right:0;
height:100%;
}
父母會伸展以適應孩子。
1
#ParentDiv {
position:relative;
height:auto;
}
#ChildDiv {
position:absolute;
/* top/left/right force it to dimensions of parent, if needed */
top:0;
left:0;
right:0;
height:100%;
}
您的ParentDiv高度爲AUTO,因此孩子強制Parent DIV擴展至瀏覽器高度的100%。從Parenet DIV中刪除auto。你的問題將被解決。
相關問題
- 1. 兒童度100%的高度
- 2. CSS Parent Div高度:自動,兒童高度100%,但高度爲0px
- 3. Flexbox拉伸div高度以填充父div的剩餘高度
- 4. DIV寬度不擴展,以適應兒童DIV的寬度 - IE7
- 5. 父母的DIV高度100%
- 6. Bootstrap兒童元素高度100%
- 7. 兒童元素不能拉伸固定高度的父容器
- 8. 更改父div高度取決於使用javascript的兒童絕對div高度
- 9. 兒童DIV動態高度和絕對位置 - 給予高度父DIV
- 10. CSS div高度不伸展
- 11. 高度的div不延伸至100%
- 12. 靈活高度和寬度的Flexbox兒童:100%
- 13. '伸展'的div內的背景圖像 - 100%的高度
- 14. 伸展高度DIV在固定高度的另一個DIV下
- 15. 使父級div寬度不擴展到適合兒童divs
- 16. 如何將div伸展至100%的頁面高度?
- 17. 背景圖像伸展100%的高度Div
- 18. 製作DIV 100%拉伸另一DIV 100%的高度內
- 19. Div 100%高度
- 20. 100%div高度
- 21. 100%高度div
- 22. JPanel與兒童匹配的父寬度和包裝的高度
- 23. css讓父母的div 100%身高和兒童可滾動
- 24. ExpandableListView動態兒童高度
- 25. 容器高度w.r.t兒童
- 26. 以css中父級的高度爲中心兒童
- 27. Div高度沒有完全伸展到100%
- 28. div的高度100%
- 29. 父格擴展到兒童的div
- 30. 身高兒童的div匹配父
如果你想父母的div是100%,爲什麼不把它指定爲100%? – Mooseman
這是默認行爲。您甚至不需要將高度設置爲100%。或者我誤解了這個問題。請詳細說明...... – Pevara
在問題中加入你的html/css。 –