我正在使用引导程序创建两列布局。我想要第一列中的表格。当我减小容器的大小时,输入文本字段不会重新调整大小并最终脱离列。为什么输入字段会分列?
这是此行为的示例:
<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/
我正在使用铬。