我有這個網站:CSS等於DIV高度
<div id="wrapper">
<div id="left">left<br/>asdfa</div>
<div id="right">right</div>
<div style="clear:both"></div>
</div>
和CSS:
#wrapper {
width: 400px;
background-color:green;
display:table;
}
#left {
display:table-cell;
float:left;
width:100px;
background: blue;
}
#right {
height:auto;
width:100px;
background: red;
float:right;
}
如何作出正確的股利,以適應包裝div的高度?
你嘗試「高度:100% 「? – Gagaro
我試過所有現有的高度,它不工作。 – user2361682