メインコンテンツにスキップ ドキュメント ナビゲーションにスキップ
in English

テキストの切り捨て

長いテキスト文字列は省略記号で切り捨てます。

より長いコンテンツの場合.text-truncate、省略記号でテキストを切り詰めるクラスを追加できます。またはが必要です。display: inline-blockdisplay: 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>