Is there a way to insert a space between the input field and the button while using input-group
in Bootstrap 3? Check out this jsFiddle for more information.
<div class="container">
<div class="row">
<div class="col-md-12">
<h1>Example</h1>
<div class="input-group">
<input type="text" class="form-control">
<span class="input-group-btn">
<button class="btn btn-default" type="button">Go!</button>
</span>
</div>
</div>
</div>
</div>