Text

Documentation and examples for common text utilities to control alignment, wrapping, weight, and more.

Text alignment

Easily realign text to components with text alignment classes.

Text - 图1

  1. <p class="text-justify">Some placeholder text to demonstrate justified text alignment. Will you do the same for me? It's time to face the music I'm no longer your muse. Heard it's beautiful, be the judge and my girls gonna take a vote. I can feel a phoenix inside of me. Heaven is jealous of our love, angels are crying from up above. Yeah, you take me to utopia.</p>

For left, right, and center alignment, responsive classes are available that use the same viewport width breakpoints as the grid system.

Text - 图2

  1. <p class="text-left">Left aligned text on all viewport sizes.</p>
  2. <p class="text-center">Center aligned text on all viewport sizes.</p>
  3. <p class="text-right">Right aligned text on all viewport sizes.</p>
  4. <p class="text-sm-left">Left aligned text on viewports sized SM (small) or wider.</p>
  5. <p class="text-md-left">Left aligned text on viewports sized MD (medium) or wider.</p>
  6. <p class="text-lg-left">Left aligned text on viewports sized LG (large) or wider.</p>
  7. <p class="text-xl-left">Left aligned text on viewports sized XL (extra-large) or wider.</p>

Text wrapping and overflow

Wrap text with a .text-wrap class.

Text - 图3

  1. <div class="badge badge-primary text-wrap" style="width: 6rem;">
  2. This text should wrap.
  3. </div>

Prevent text from wrapping with a .text-nowrap class.

Text - 图4

  1. <div class="text-nowrap bd-highlight" style="width: 8rem;">
  2. This text should overflow the parent.
  3. </div>

For longer content, you can add a .text-truncate class to truncate the text with an ellipsis. Requires display: inline-block or display: block.

Text - 图5

  1. <!-- Block level -->
  2. <div class="row">
  3. <div class="col-2 text-truncate">
  4. Praeterea iter est quasdam res quas ex communi.
  5. </div>
  6. </div>
  7. <!-- Inline level -->
  8. <span class="d-inline-block text-truncate" style="max-width: 150px;">
  9. Praeterea iter est quasdam res quas ex communi.
  10. </span>

Word break

Prevent long strings of text from breaking your components’ layout by using .text-break to set word-wrap: break-word and word-break: break-word. We use word-wrap instead of the more common overflow-wrap for wider browser support, and add the deprecated word-break: break-word to avoid issues with flex containers.

Text - 图6

  1. <p class="text-break">mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm</p>

Text transform

Transform text in components with text capitalization classes.

Text - 图7

  1. <p class="text-lowercase">Lowercased text.</p>
  2. <p class="text-uppercase">Uppercased text.</p>
  3. <p class="text-capitalize">CapiTaliZed text.</p>

Note how .text-capitalize only changes the first letter of each word, leaving the case of any other letters unaffected.

Font weight and italics

Quickly change the weight (boldness) of text or italicize text.

Text - 图8

  1. <p class="font-weight-bold">Bold text.</p>
  2. <p class="font-weight-bolder">Bolder weight text (relative to the parent element).</p>
  3. <p class="font-weight-normal">Normal weight text.</p>
  4. <p class="font-weight-light">Light weight text.</p>
  5. <p class="font-weight-lighter">Lighter weight text (relative to the parent element).</p>
  6. <p class="font-italic">Italic text.</p>

Monospace

Change a selection to our monospace font stack with .text-monospace.

Text - 图9

  1. <p class="text-monospace">This is in monospace</p>

Reset color

Reset a text or link’s color with .text-reset, so that it inherits the color from its parent.

Text - 图10

  1. <p class="text-muted">
  2. Muted text with a <a href="#" class="text-reset">reset link</a>.
  3. </p>

Text decoration

Remove a text decoration with a .text-decoration-none class.

Text - 图11

  1. <a href="#" class="text-decoration-none">Non-underlined link</a>