I have been doing some research into Bootstrap and have come across the following resources:
What is the purpose of .row in Bootstrap? and
Despite reading these links, I am still struggling to understand why my columns do not float left as expected in the following code:
<div class = "container">
<div class = "col-2">
1
</div>
<div class = "col-2">
2
</div>
</div>