I'm newbie in Angular and trying to develop my first application but stuck in alignment using bootstrap classes.
Here is my Code:
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" />
<div class="row">
<div class="form-group col-md-4">
<label>Client</label>
<Select class="form-control">
<option>Client 1</option>
<option>Client 2</option>
<option>Client 3</option>
<option>Client 4</option>
<option>Client 5</option>
<option>Client 6</option>
</Select>
</div>
<div class="form-group col-md-4">
<button type=submit class="btn btn-sm btn-success"><i class="fa fa-dot-circle-o"></i> Add</button>
</div>
<div class="form-group col-md-4">
<button type="submit" class="btn btn-sm btn-info pull-right" vertical-align="bottom"><i class="fa fa-dot-circle-o"></i> Get Data</button>
</div>
</div>
and here the output of this code
Problem is that all these inputs are top-aligned but I want client dropdown and both buttons to be bottom aligned.
I tried input-group-btn
class but that didn't work for me. Even here on StackOverflow, I found solutions only about right-alignment.