使用bootstrap,如果我有这样的表格:
<form>
<fieldset>
<legend>Legend</legend>
<label>Label name</label>
<input type="text" placeholder="Type something…">
<button type="submit" class="btn">Submit</button>
</fieldset>
</form>
按钮位于输入旁边。但我需要它保持在底部。
答案 0 :(得分:3)
添加:
.block {
display:block
}
在bootstrap.css结尾处,然后将“block”类添加到提交按钮:
<button type="submit" class="btn block">Submit</button>