Перейти к основному содержанию Перейти к навигации по документам

Усечение текста

Обрезка длинных строк текста с помощью подстановки многоточия.

Содержание

Для более длинного содержимого Вы можете добавить класс .text-truncate, чтобы обрезать текст многоточием. Требуется display: inline-block или display: block.

This text is quite long, and will be truncated once displayed.
This text is quite long, and will be truncated once displayed.
<!-- Блочный уровень -->
<div class="row">
  <div class="col-2 text-truncate">
    This text is quite long, and will be truncated once displayed.
  </div>
</div>

<!-- Строчный уровень -->
<span class="d-inline-block text-truncate" style="max-width: 150px;">
  This text is quite long, and will be truncated once displayed.
</span>
Помочь проекту