I currently have 4 divs displaying in a row. When the window is made smaller it turns into 2 rows with 2 divs on each row. I am trying to add an in between layer where it collapses into 3 divs on the top (with the extra one below)
<div class="row">
<div class="col-xs-6 col-sm-3">
<p>1</p>
</div>
<div class="col-xs-6 col-sm-3">
<p>2</p>
</div>
<div class="col-xs-6 col-sm-3">
<p>3</p>
</div>
<div class="col-xs-6 col-sm-3">
<p>4</p>
</div>
</div>
I have tried to add a 3rd class between col-xs-6 and col-sm-3 but haven't been able to get it working. I am not quite sure of the terminology around what I am trying to do - which I think might be why I am having trouble searching for an answer
Thanks