Performance: Responsive column classes
MEDIUM IMPACT
This affects how quickly the page adapts to different screen sizes and the efficiency of CSS rendering for layout changes.
<div class="col-md-4"></div>
<div class="col-12 col-sm-6 col-md-4 col-lg-3 col-xl-2"></div>
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Many breakpoint classes on one element | Low | Multiple on resize | Medium | [! ] OK |
| Minimal breakpoint classes targeting key sizes | Low | Single on resize | Low | [OK] Good |