I've been attempting to create a search bar with the search button enclosed within it. I'm currently following this method (http://getbootstrap.com/components/#input-groups-buttons) and I copied the code exactly as instructed, but unfortunately, my search button seems to be positioned outside the search bar:
Is there any reason why my outcome is different from what is displayed on the Bootstrap website?
This is how my applicaton.rb appears:
<div class="col-lg-6">
<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>