I am currently utilizing Bootstrap 3.0 and hoping to achieve a layout similar to this:
Favorites Add
I want the "Favorites" text to be aligned on the left and enclosed in an H3 tag, while the "Add" link is aligned on the right within an anchor tag. Both elements should be bottom-aligned and appear on the same line.
Here is my code that is not producing the desired result:
<div class="vertical-gutter-xs row container">
<div class="row">
<div clas="col-md-6" style="border: 1px solid red"><h3>Favorites</h3></div>
<div clas="col-md-6" style="text-align: right; border: 1px solid red"><a>add</a></di>
</div>
<hr />
</div>
Thank you for your assistance.