Here is a snippet of HTML code:
<button class="btn">hello</button>
<select class="input-small"><option>1</option></select>
<button class="btn">world</button>
The position of the select
element is not correct. You can view a live demo at http://jsfiddle.net/SUJpH/
To fix it, I added the following CSS:
select {
position: relative;
bottom: -4px;
}
Although this solution works, I am curious if Bootstrap provides any CSS classes that can address this issue.