Is there a way to use the 'col' classes without having them stack on top of each other?
I have a form row that requires different numbers of columns on various screen sizes.
<div class="form-row">
<div class="col-3"></div>
<div class="col-8"></div>
<div class="col"></div>
</div>
For tablets and larger screens, it should use 'col-3' and 'col-8'. But for phones, it needs 'col-2' and 'col-9'.
Do you know how I can achieve this without having to override Bootstrap's default classes?