Performance: Offset columns
MEDIUM IMPACT
Offset columns affect the layout calculation and paint phases by adding empty space before columns, impacting page rendering speed.
<div class="row"> <div class="offset-4 col-4">Content</div> </div>
<div class="row"> <div class="col-4" style="margin-left: 33.3333%;">Content</div> </div>
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Manual margin-left for offset | Minimal DOM nodes | Multiple reflows on resize | Higher paint cost due to layout thrashing | [X] Bad |
| Bootstrap offset classes | Minimal DOM nodes | Single reflow on load | Lower paint cost with stable layout | [OK] Good |