in English
Мәтінді қысқарту
Мәтіннің ұзын жолдарын эллипспен қысқартыңыз.
Ұзақ мазмұн .text-truncate
үшін мәтінді эллипспен қысқарту үшін сынып қосуға болады. немесе талап етеді .display: inline-block
display: block
Бұл мәтін өте ұзын және көрсетілгеннен кейін қысқартылады.
<!-- Block level -->
<div class="row">
<div class="col-2 text-truncate">
This text is quite long, and will be truncated once displayed.
</div>
</div>
<!-- Inline level -->
<span class="d-inline-block text-truncate" style="max-width: 150px;">
This text is quite long, and will be truncated once displayed.
</span>