In tablet mode, I am concealing my col-sm-5 using the class hidden-sm
.
<div class="row">
<div class="col-sm-4">
</div>
<div class="col-sm-5">
</div>
<div class="col-sm-3">
</div>
</div>
Is there a way for the col-sm-4
to expand and take up the space left by the hidden col-sm-5
?.