I'm currently utilizing Bootstrap's grid system, featuring multiple rows with the first column set as col-auto to accommodate varying content lengths. Is there a method to ensure that each row's first column width matches the largest width required by any given column?
For instance:
<div class="container-fluid">
<div class="row">
<div class="col-auto">short col</div>
<div class="col">other stuff</div>
</div>
<div class="row">
<div class="col-auto">clearly the longest column</div>
<div class="col">other stuff</div>
</div>
<div class="row">
<div class="col-auto">medium column</div>
<div class="col">other stuff</div>
</div>
</div>
The goal is to have all columns with the col-auto class match the length of the longest column.