My goal is to display text and an input box on the same row, however, I am facing a challenge. The input box keeps jumping to the next line even though there is enough space for it on the same row as the text. I searched through the documentation but found advice only related to achieving this layout for forms by using the class form-horizontal.
What I need is simple - just a paragraph (<p>
tag) followed by an input box.
You can see a demonstration in this JSFiddle: http://jsfiddle.net/dz089gac/1/
<div class="container">
<div class="row">
<p>Hi</p>
<input type="text" placeholder="hi">
</div>
</diV>