Problem Statement
What does the class .col without a number mean?
Explanation
.col lets Bootstrap automatically distribute equal width columns within the row. It adapts according to available space.
Code Solution
SolutionRead Only
<div class='row'><div class='col'>One</div><div class='col'>Two</div></div>
