我想知道我们是否可以将 a 的高度设置div class="span6"
为其row-fluid
容器?
这是一个示例,我在左侧有一个表单,在右侧有一个按钮,我怎样才能使按钮与左侧的表单高度相同?
<div class="container-fluid">
<div class="row-fluid">
<div class="span6">
<form>
<fieldset>
<legend>Legend</legend>
<label>Label name</label>
<input type="text" placeholder="Type something…">
<span class="help-block">Example block-level help text here.</span>
<label class="checkbox">
<input type="checkbox"> Check me out
</label>
</fieldset>
</form>
</div>
<div class="span6"><button>Big Button</button></div>
</div>
</div>
谢谢。