如何使紅色div的高度等於父黃色div?絕對定位div父容器的高度
HTML:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<div class="main">
<div class="left">
</div>
<div class="right">
</div>
</div>
</body>
</html>
CSS:
.main {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0px;
background-color: yellow;
overflow: auto;
}
.left {
background-color: orange;
position: absolute;
top: 0;
left: 0;
width: 200px;
height: 2000px;
}
.right {
background-color: orangered;
position: absolute;
top: 0;
left: 200px;
right: 0;
bottom: 0;
}
這裏舉例:http://jsbin.com/fafexulube/edit?html,css,output
更新:左div的高度不能改變,它有2000像素,顯示它是高於其父母。
絕對需要你絕對定位一切嗎?否則,您可以考慮各種解決方案,使用表格單元格,彈性盒等。 – Terry
它與領土...如果沒有明顯的解決方案,那麼我可能會去與表格單元格。 – andriys