in English
Text trunkering
Trunkera långa textsträngar med en ellips.
För längre innehåll kan du lägga till en .text-truncate
klass för att trunkera texten med en ellips. Kräver display: inline-block
eller display: block
.
Denna text är ganska lång och kommer att trunkeras när den visas.
<!-- 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>