I've been searching for an answer to this question but couldn't find it. I want to arrange three columns in a row, with the middle column taking up 50% of the space and the left and right columns each taking up 25%. I don't want them to stack on top of each other like Bootstrap does by default.
<div class="row">
<div class="col">
25%
</div>
<div class="col">
50%
</div>
<div class="col">
25%
</div>
</div>
Can Bootstrap's grid system achieve this layout, or do I need to implement custom styling?