사용할 수 있지만 이전 브라우저에서 작동하지 않습니다.
는 HTML :
<div class="wrapper">
<div class="left">
<p>Left</p>
<p>Left</p>
<p>Left</p>
<p>Left</p>
<p>Left</p>
</div>
<div class="separator"></div>
<div class="right">
<p>Right</p>
<p>Right</p>
<p>Right</p>
<p>Right</p>
<p>Right</p>
<p>Right</p>
<p>Right</p>
<p>Right</p>
<p>Right</p>
<p>Right</p>
</div>
</div>
<div class="footer"></div>
CSS :`absolute` poistioning없이
.wrapper{
width: 500px;
display:table;
}
.wrapper>div{display:table-cell;}
.left{
border:10px solid #0188ed;
margin-right:10px;
background: #0150e1;
width: 180px;
}
.right{
width:270px;
border:10px solid #0188ed;
background: #0150e1;
}
.footer{
background:#0181ec;
height: 50px;
width: 500px;
border-top: 10px solid #ffffff;
}
DEMO: http://jsfiddle.net/5fA3q/12/
감사 이봐 http://jsfiddle.net/5fA3q/7/ – NestedWeb