Text truncation

Truncate long strings of text with an ellipsis.

For longer content, you can add a .text-truncate class to truncate the text with an ellipsis. Requires display: inline-block or display: block.

Text truncation - 图1

  1. <!-- Block level -->
  2. <div class="row">
  3. <div class="col-2 text-truncate">
  4. Praeterea iter est quasdam res quas ex communi.
  5. </div>
  6. </div>
  7. <!-- Inline level -->
  8. <span class="d-inline-block text-truncate" style="max-width: 150px;">
  9. Praeterea iter est quasdam res quas ex communi.
  10. </span>