Text alignment

Easily realign text to components with text alignment classes. For start, end, and center alignment, responsive classes are available that use the same viewport width breakpoints as the grid system.

Text - 图1

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

Note that we don’t provide utility classes for justified text. While, aesthetically, justified text might look more appealing, it does make word-spacing more random and therefore harder to read.

Text wrapping and overflow

Wrap text with a .text-wrap class.

Text - 图2

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

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

Text - 图3

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

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 - 图4

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

Note that breaking words isn’t possible in Arabic, which is the most used RTL language. Therefore .text-break is removed from our RTL compiled CSS.

Text transform

Transform text in components with text capitalization classes.

Text - 图5

  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 size

Quickly change the font-size of text. While our heading classes (e.g., .h1.h6) apply font-size, font-weight, and line-height, these utilities only apply font-size. Sizing for these utilities matches HTML’s heading elements, so as the number increases, their size decreases.

Text - 图6

  1. <p class="fs-1">.fs-1 text</p>
  2. <p class="fs-2">.fs-2 text</p>
  3. <p class="fs-3">.fs-3 text</p>
  4. <p class="fs-4">.fs-4 text</p>
  5. <p class="fs-5">.fs-5 text</p>
  6. <p class="fs-6">.fs-6 text</p>

Customize your available font-sizes by modifying the $font-sizes Sass map.

  1. $font-sizes: (
  2. 1: $h1-font-size,
  3. 2: $h2-font-size,
  4. 3: $h3-font-size,
  5. 4: $h4-font-size,
  6. 5: $h5-font-size,
  7. 6: $h6-font-size
  8. );

Font weight and italics

Quickly change the font-weight or font-style of text with these utilities. font-style utilities are abbreviated as .fst-* and font-weight utilities are abbreviated as .fw-*.

Text - 图7

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

Line height

Change the line height with .lh-* utilities.

Text - 图8

  1. <p class="lh-1">Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Donec sed odio dui. Cras mattis pannenkoek purus sit amet fermentum. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Nullam id dolor id nibh ultricies vehicula ut id elit. Cras mattis consectetur purus sit amet fermentum.</p>
  2. <p class="lh-sm">Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Donec sed odio dui. Cras mattis pannenkoek purus sit amet fermentum. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Nullam id dolor id nibh ultricies vehicula ut id elit. Cras mattis consectetur purus sit amet fermentum.</p>
  3. <p class="lh-base">Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Donec sed odio dui. Cras mattis pannenkoek purus sit amet fermentum. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Nullam id dolor id nibh ultricies vehicula ut id elit. Cras mattis consectetur purus sit amet fermentum.</p>
  4. <p class="lh-lg">Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Donec sed odio dui. Cras mattis pannenkoek purus sit amet fermentum. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Nullam id dolor id nibh ultricies vehicula ut id elit. Cras mattis consectetur purus sit amet fermentum.</p>

Monospace

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

Text - 图9

  1. <p class="font-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

Decorate text in components with text decoration classes.

Text - 图11

  1. <p class="text-decoration-underline">This text has a line underneath it.</p>
  2. <p class="text-decoration-line-through">This text has a line going through it.</p>
  3. <a href="#" class="text-decoration-none">This link has its text decoration removed</a>