I am new to bootstrap and jquery, and working on a small project for my school. I am using bootstrap in my application so that it can be responsive. The problem as you can see in attached image is that both buttons appear vertically at the top of their respective columns.How could I arrange both buttons so that they appear in middle of their respective columns. Below is my code
<div class="container">
<div class="row">
<section class="col-sm-5">
<div class="form-group">
<label for="project-name">Enter Data:</label>
<textarea class="form-control" rows="3" id="textarea1"
name="input1"></textarea>
<div class="error" id="javaerror"></div>
</div>
</section>
<section class="col-sm-2 text-center">
<div class="vcenter">
<button type="button" class="btn btn-default" id="data1">Process1</button>
</div>
</section>
<section class="col-sm-5">
<div>
<label for="project-name">Result</label>
<textarea class="form-control" rows="3" id="result1"
name="resultdata"></textarea>
</div>
</section>
</div>
<div class="row">
<section class="col-sm-5">
<div class="form-group">
<label for="project-name">Enter Data:</label>
<textarea class="form-control" rows="3" id="textarea2"
name="input2"></textarea>
<div class="error" id="openerror"></div>
</div>
</section>
<section class="col-sm-2 text-center">
<div class="vcenter">
<button type="button" class="btn btn-default" id="data2">Process2
</button>
</div>
</section>
<section class="col-sm-5">
<div>
<label for="project-name">Result</label>
<textarea class="form-control" rows="3" id="result2"
name="resultDataNew"></textarea>
</div>
</section>
</div>
</div>