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>