Performance: Mixing column widths
MEDIUM IMPACT
This affects page layout stability and rendering speed by how the browser calculates and paints column widths.
<div class="row"> <div class="col-3">Fixed width via grid</div> <div class="col">Flexible width</div> </div>
<div class="row"> <div class="col-3" style="width: 200px;">Fixed width</div> <div class="col">Flexible width</div> </div>
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Mixed fixed inline width + Bootstrap col | Low | Multiple reflows per layout change | High due to layout shifts | [X] Bad |
| Consistent Bootstrap column classes | Low | Single reflow | Low paint cost, stable layout | [OK] Good |