Is there a way to align the submit buttons in two separate forms side by side? The first form should display as a block level element, while the second form can be inline-block.
<form action="#">
<div class="form-group">
<label for="title">Title</label>
<input type="text" name="title" class="form-control" id="title" placeholder="Enter title">
</div>
<div class="form-group">
<label for="body">Body</label>
<textarea class="form-control" name="body" id="body" rows="10"></textarea>
</div>
<button type="submit" class="btn btn-primary">Update</button>
</form>
<form action="#" style="display: inline-block;">
<button type="submit" class="btn btn-danger">DELETE</button>
</form>