Helper Classes in Bootstrap

From the Bootstrap 5 cheat sheet · Helpers & Misc · verified Jul 2026

Helper Classes

Utility helper classes

html
<!-- Ratios -->
<div class="ratio ratio-1x1">1:1</div>
<div class="ratio ratio-4x3">4:3</div>
<div class="ratio ratio-16x9">16:9</div>
<div class="ratio ratio-21x9">21:9</div>

<!-- Stretched Link -->
<div class="card">
  <div class="card-body">
    <h5 class="card-title">
      <a href="#" class="stretched-link">Card link</a>
    </h5>
    <p class="card-text">Entire card is clickable</p>
  </div>
</div>

<!-- Text Truncation -->
<div class="text-truncate" style="width: 150px;">
  This text will truncate with ellipsis
</div>
💡 Stretched-link makes entire container clickable
⚡ Ratio classes maintain aspect ratios for embeds
📌 visually-hidden hides visually but not from screen readers
🔥 Placeholder classes create loading skeleton screens
Back to the full Bootstrap 5 cheat sheet