What is the best way to position a button next to an input in Bootstrap without merging them together like with input-group-btn? I want to maintain the normal bootstrap style for buttons.
<div>
<input class="form-control" /> <button class="btn btn-primary">enter</button>
</div>
Current Output:
|input | //occupies the full width
(button) //button comes to bottom
Desired Output:
|input | (button) //same "line".