ブートストラップを使用して2列のレイアウトを作成しています。最初の列にフォームが必要です。コンテナのサイズを小さくすると、入力テキストフィールドのサイズが変更されず、最終的に列から外れます。入力フィールドが列を分割するのはなぜですか?
この動作の例を次に示します。
<div class="container-fluid">
<div class="row-fluid">
<div class="span4">
<div class="well">
<form>
<input type="text" />
</form>
</div>
</div>
<div class="span8">
Notice how I am to the left of the well, but the input field breaks out of the well and column. And I'm overlapping with the input field!
</div>
</div>
</div>
この簡単な例は、動作を示しています:http: //jsfiddle.net/xhHQD/1/
クロームを使用しています。