in English
Zkrácení textu
Zkraťte dlouhé řetězce textu pomocí elipsy.
Pro delší obsah můžete přidat .text-truncate
třídu pro zkrácení textu pomocí elipsy. Vyžaduje display: inline-block
nebo display: block
.
Tento text je poměrně dlouhý a po zobrazení bude zkrácen.
<!-- 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>