I have a form that looks like this:
<form class="navbar-form text-center">
<input type="text" class="span2">
<p></p>
<input type="text" class="span2">
<p></p>
...
<button type="submit" class="btn btn-success">I'm Done</button>
</form>
Right now I'm using the <p></p>
block, but that seems far from elegant to me.
I'd like to know if there was a better way because I searched a bit and couldn't find one. Thanks!
EDIT: I'd like to avoid additional HTML if possible like br and p tags.