Trying to get a row (article tags) to go to the bottom of the parent container. Basic layout looks like this:
<div class='row mb-3'>
<div class='col-3'> [ thumbnail image goes here ]</div>
<div class="col-9'>
<div class='row'>
<div class='col-12>Article title</div>
</div>
<div class='row'>
<div class='col-12>Article excerpt</div>
</div>
<div class='row'>
<div class='col-12>Tags: tag1, tag2, tag3</div>
</div>
</div>
</div>
The excerpt row will have varying amounts of text in it. How can I get the tags row to be at the bottom of the col-9 column?
@Zim's answer below seems to get close, but the middle column that should expand to the height of the parent container (row with thumbnail image) goes full page height instead:
The tags row is down at the bottom of the page window. With multiple rows being output the tags row is way down in the next row's content.
