How can I center 2 buttons vertically in my view?
For example:
<div class="container">
    <div class="row">
        <div class="col-md-5">
            <h4>My List</h4>
            <div style="height:400px; overflow-y:auto">
                <ul>
                    // List of checkboxes
                </ul>
            </div>
        </div>
        <div class="col-md-2">
            <input type="button" id="btnAddField" class="btn btn-primary" value="Add" />
            <input type="button" id="btnRemoveField" class="btn btn-primary" value="Remove" />
        </div>
        <div class="col-md-5">
            <h4>Selected Fields</h4>
            // This will contain the list selected from the checkboxes.
        </div>
    </div>
</div>
I want the buttons in column 2 to be centered in relation to column 1 (which in this case I made height of 400px.
 
     
     
     
    