Is there a way in Bootstrap to have two divs on the same row, where if one is removed, the remaining div takes up the full width?
<div class="row">
<div class="col-sm-6" style="background-color:lavender;">Div1</div>
<div class="col-sm-6" style="background-color:lavenderblush;">Div2</div>
</div>
I am utilizing Bootstrap for grid layout and responsiveness. Any suggestions on how to achieve this within Bootstrap?