私の中間の列の幅全体にまたがるテキストボックスを作成しようとしています。 divの下に落としても、テキストボックスの幅を100%に設定すると、いつでも良いように見えます。中間のDIVに含まれるテキストボックスを保持し、中間のDIVの100%にするにはどうすればよいですか?2つの静的DIVの間の動的サイズのテキストボックス
HTML
<div class="leftsidebar">a</div>
<div class="rightsidebar">b</div>
<div class="content">
<div>
<input type="text" style=""/>
</div>
</div>
CSS
.leftsidebar { width: 60px; background:red; float:left; }
.rightsidebar { background:blue; width: 170px; float:right; }
.content { width: auto;background:yellow; }
.content input[type='text'] { width: 100%; }