Imagine a situation where I am using Bootstrap 5 and have the following code snippet...
<div class="container">
<div class="row row-cols-auto">
<div class="col">One</div>
<div class="col">Two</div>
<div class="col">Three</div>
</div>
</div>
Currently, all columns adjust their width based on content.
My goal is to make column two as wide as possible without affecting columns one and three. Can this be achieved using Bootstrap alone or do I need additional CSS?