အဓိကအကြောင်းအရာသို့ ကျော်သွားပါ။ စာရွက်စာတမ်းလမ်းညွှန်မှုသို့ ကျော်သွားပါ။
in English

စာသားဖြတ်တောက်ခြင်း။

စာကြောင်းရှည်များကို ellipsis ဖြင့် ဖြတ်ထုတ်ပါ။

ပိုရှည်သောအကြောင်းအရာအတွက်၊ သင်သည် .text-truncateစာသားကို ellipsis ဖြင့် ဖြတ်တောက်ရန် အတန်းတစ်ခုကို ထည့်နိုင်သည်။ လိုအပ်သည် 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>