Is there a way to position the contents of the right-info
div vertically at the right end of my Bootstrap 4 page?
I've experimented with the following code snippets:
<div class="row right-info flex-column justify-content-end">
<div class="col-md-4 company-info-area">Col-1</div>
<div class="col-md-4">Col-2 Below Col-1</div>
</div>
<div class="row flex-column flex-row-reverse right-info">
<div class="col-md-4 company-info-area">Col-1</div>
<div class="col-md-4">Col-2 Below Col-1</div>
</div>