The first row is not responsive and there will be 4 columns for any breakpoints but the second row is responsive based on
md
and
lg
device sizes
<div class="container">
<div class="row">
<div class="col">
One of three columns
</div>
<div class="col">
One of three columns
</div>
<div class="col">
One of three columns
</div>
<div class="col">
One of three columns
</div>
</div>
<br><br><br>
<div class="row">
<div class="col-md-6 col-lg-3">
One of three columns
</div>
<div class="col-md-6 col-lg-3">
One of three columns
</div>
<div class="col-md-6 col-lg-3">
One of three columns
</div>
<div class="col-md-6 col-lg-3">
One of three columns
</div>
</div>
</div>