div を固定サイズで右にフロートさせたいのですが、残りのスペースを残す必要があります。私はこれを流れるような方法で行いました:
HTML:
<div class="container">
<div id="rightCntr">
</div>
<div id="leftCntr">
</div>
</div>
CSS:
#leftCntr {
float: none; /* not needed, just for clarification */
background: #e8f6fe;
/* the next props are meant to keep this block independent from the other floated one */
width: auto;
overflow: hidden;
}
#rightCntr { float: right; width: 213px;}
これは Firefox と Chrome では問題なく動作しますが、IE8 ではまったくうまくいきません。例