<img id='imgT' src="...">
<div id="divL"></div>
<div id="divR"></div>
css
body{
max-width:1024px;
}
#imgT{
width:100%;
border:thin solid blue;
display:block;
}
#divL{
width:20%;
height:100px; // I need 100%
background:#008080;
float:left;
}
#divR{
width:80%;
height:100px; // I need 100%
background:blue;
float:left;
}
小提琴在这里
那么,我怎样才能使两个 div 的高度为 100%,即从图像底部到页面底部。