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>