Using Bootstrap 5, I have created a page layout with 3 columns:
<div class="container">
<div class="row">
<div class="col-md-3">LEFT</div>
<div class="col-md-6">CENTER</div>
<div class="col-md-3">RIGHT</div>
</div>
</div>
Currently, I have advertisements within the left and right columns with a width of 300px. How can I ensure that the left and right columns do not shrink below 300px, and only the center column is allowed to shrink?
Setting min-width:300px on the left and right columns causes the right column to be pushed down, which is not the desired behavior.