问问题
3721 次
3 回答
5
只需添加form
带有 class 的标签form-inline
:
<form class="form-inline">
<button class="btn">hello</button>
<select class="input-small"><option>1</option></select>
<button class="btn">world</button>
</form>
于 2012-10-26T14:38:32.810 回答
0
在bootstrap.css行号中。- 951 在这个班级 -
select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input
有margin-bottom: 9px;
删除它,一切都会按预期工作
于 2012-10-26T14:11:37.727 回答
0
一种bootstrap.css
保持不变的方法是这样写:
<select class="input-small" style="margin-top:10px"><option>1</option></select>
于 2012-10-26T14:40:02.467 回答