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>