.text-justify
は、単語間に適度なスペースを入れることにより、行の両端を揃えます。
<div class="border text-justify">The World Wide Web ...</div> <div class="border">The World Wide Web ...</div>
.text-left
, .text-center
, .text-right
はそれぞれ、テキストを左寄せ、中央寄せ、右寄せします。
<div class="text-left">左寄せ</div> <div class="text-center">中央寄せ</div> <div class="text-right">右寄せ</div>
.text-{sm|md|lg|xl}-{left|center|right}
の形式は、それぞれ、SM(Small)サイズ以上、MD(Medium)サイズ以上、LG(Large)サイズ以上、XL(Extra Large)サイズ以上の時のみ、左寄せ、中央寄せ、右寄せします。
<div class="text-sm-left">左寄せ(SM以上の時)</div> <div class="text-sm-center">中央寄せ(SM以上の時)</div> <div class="text-sm-right">右寄せ(SM以上の時)</div>
.text-nowrap
はテキストの自動改行を禁止します。.text-wrap
は自動改行を許可します。
<div class="border">The World Wide Web (abbreviated WWW or the Web) is ...</div> <div class="border text-nowrap">The World Wide Web (abbreviated WWW or the Web) is ...</div>
.text-truncate
ははみ出すテキストを切り詰め、代わりに ... を表示します。要素には .d-block
(display:block
) または .d-inline-block
(display:inline-block
) を指定しておく必要があります。
<div class="d-block">Hypertext Markup Language (HTML) is ...</div> <div class="d-block text-truncate">Hypertext Markup Language (HTML) is ...</div>
.text-lowercase
はテキスト全体を小文字に、.text-uppercase
は大文字に、.text-capitalize
は各単語の先頭文字を大文字に変換して表示します。
<div class="text-lowercase">Lowercased text.</div> <div class="text-uppercase">Uppercased text.</div> <div class="text-capitalize">Capitalized text.</div>
.font-weight-{ bold | bolder | normal | light | lighter }
はフォントの太さを太字、通常、細字にします。.font-italic
はフォントをイタリック体にします。
<div class="font-weight-bold">This text is bold.</div> <div class="font-weight-bolder">This text is bolder.</div> <div class="font-weight-normal">This text is normal.</div> <div class="font-weight-light">This text is light.</div> <div class="font-weight-lighter">This text is lighter.</div> <div class="font-italic">This text is italic.</div>
.text-monospace
は、モノスペース(等幅)フォントを指定します。
<div class="d-block">This is not monospace text.</div> <div class="d-block text-monospace">This is monospace text.</div>
.text-reset
は、テキストの色をリセットします。
Muted text with a reset link.
<p class="text-muted"> Muted text with a <a href="#" class="text-reset">reset link</a>. </p>
.text-decoration-none
は、テキストの装飾をなくします。
<a href="#" class="text-decoration-none">Link without underline</a>