For quite some time now, I've had a lingering question on my mind - "What is the proper method to align content inside a Bootstrap column?"
When using the Bootstrap Grid system, I typically divide the screen width into col-md-* blocks to create columns that maintain their alignment even when resizing the window. However, I have not been able to determine the best way to align the content within these blocks.
The official Bootstrap documentation page only discusses floating elements to the right or left using
<div class="pull-left">..</div>
or
<div class="pull-right">...</div>
classes. So, what should be done if I want to align elements to the bottom right corner? What is the most commonly used approach with Bootstrap markup for achieving this?