I am trying add input boxes to a button type style. My effort is below. It works but the ‘button’ with the input box is much fatter (height) than the one without. Is it possible to make the height the same?
<div class="btn btn-info">I'm nice and slim</div>
<div class="btn btn-info">help <input type="text" class="input-mini" placeholder="Type here"> I'm too fat!</div>

1 Answer