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>