I am facing an issue with aligning two links (one text and one image) to the right and ensuring that the bottom of each is vertically aligned. Currently, they appear like this:
(vertically aligned with each others' tops)
Here's the relevant HTML code:
<div class="col-md-7">
<div class="thumbnail">
<div class="caption clearfix">
<h2>Heading</h2>
<p class="thin">Donut jelly beans muffin cupcake. Oat cake caramels gingerbread cotton candy.</p>
<p class="thin">Chupa chips biscuit jelly chocolate bar danish caramels sugar plum cupcake.</p>
<a href="#" class="pull-right"><img src="http://placehold.it/100x70"></a>
<a href="#" class="pull-right">See example</a>
</div>
</div>
</div>
Would appreciate any advice on how to achieve vertical alignment at the bottom of each element.