Html代码:
<button class="btn">hello</button>
<select class="input-small"><option>1</option></select>
<button class="btn">world</button>
但select
的位置不正确。您可以在http://jsfiddle.net/SUJpH/
我必须为它添加一个修复程序:
select {
position: relative;
bottom: -4px;
}
它有效,但我想知道是否有一些bootstrap提供的css类可以修复它吗?
答案 0 :(得分:5)
只需在课程form
中添加标记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>
答案 1 :(得分: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;
删除它,一切都会按预期工作
答案 2 :(得分:0)
使bootstrap.css
保持不变的方法就是这样写:
<select class="input-small" style="margin-top:10px"><option>1</option></select>