Text

    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.

    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 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.

    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.

    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.

    Transform text in components with text capitalization classes.

    Text - 图5

    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.

    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.

    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-*.

    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>

    Change the line height with .lh-* utilities.

    Text - 图8

    1. <p class="lh-1">This is a long paragraph written to show how the line-height of an element is affected by our utilities. Classes are applied to the element itself or sometimes the parent element. These classes can be customized as needed with our utility API.</p>
    2. <p class="lh-sm">This is a long paragraph written to show how the line-height of an element is affected by our utilities. Classes are applied to the element itself or sometimes the parent element. These classes can be customized as needed with our utility API.</p>
    3. <p class="lh-base">This is a long paragraph written to show how the line-height of an element is affected by our utilities. Classes are applied to the element itself or sometimes the parent element. These classes can be customized as needed with our utility API.</p>
    4. <p class="lh-lg">This is a long paragraph written to show how the line-height of an element is affected by our utilities. Classes are applied to the element itself or sometimes the parent element. These classes can be customized as needed with our utility API.</p>

    Monospace

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

    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. </p>

    Decorate text in components with text decoration classes.

    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>

    Sass

    1. // stylelint-disable value-keyword-case
    2. $font-family-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    3. $font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    4. // stylelint-enable value-keyword-case
    5. $font-family-code: var(--#{$variable-prefix}font-monospace);
    6. // $font-size-root affects the value of `rem`, which is used for as well font sizes, paddings, and margins
    7. // $font-size-base affects the font size of the body text
    8. $font-size-root: null;
    9. $font-size-base: 1rem; // Assumes the browser default, typically `16px`
    10. $font-size-sm: $font-size-base * .875;
    11. $font-size-lg: $font-size-base * 1.25;
    12. $font-weight-lighter: lighter;
    13. $font-weight-light: 300;
    14. $font-weight-normal: 400;
    15. $font-weight-bold: 700;
    16. $font-weight-bolder: bolder;
    17. $font-weight-base: $font-weight-normal;
    18. $line-height-base: 1.5;
    19. $line-height-sm: 1.25;
    20. $line-height-lg: 2;
    21. $h1-font-size: $font-size-base * 2.5;
    22. $h2-font-size: $font-size-base * 2;
    23. $h3-font-size: $font-size-base * 1.75;
    24. $h4-font-size: $font-size-base * 1.5;
    25. $h5-font-size: $font-size-base * 1.25;
    26. $h6-font-size: $font-size-base;

    Font and text utilities are declared in our utilities API in scss/_utilities.scss. Learn how to use the utilities API.

    1. "font-family": (
    2. property: font-family,
    3. class: font,
    4. values: (monospace: var(--#{$variable-prefix}font-monospace))
    5. ),
    6. "font-size": (
    7. rfs: true,
    8. property: font-size,
    9. class: fs,
    10. values: $font-sizes
    11. ),
    12. "font-style": (
    13. property: font-style,
    14. class: fst,
    15. values: italic normal
    16. "font-weight": (
    17. property: font-weight,
    18. class: fw,
    19. values: (
    20. light: $font-weight-light,
    21. normal: $font-weight-normal,
    22. bold: $font-weight-bold,
    23. bolder: $font-weight-bolder
    24. )
    25. ),
    26. "line-height": (
    27. property: line-height,
    28. class: lh,
    29. values: (
    30. 1: 1,
    31. sm: $line-height-sm,
    32. base: $line-height-base,
    33. lg: $line-height-lg,
    34. )
    35. ),
    36. "text-align": (
    37. responsive: true,
    38. property: text-align,
    39. class: text,
    40. values: (
    41. start: left,
    42. end: right,
    43. center: center,
    44. )
    45. ),
    46. "text-decoration": (
    47. property: text-decoration,
    48. values: none underline line-through
    49. ),
    50. "text-transform": (
    51. property: text-transform,
    52. class: text,
    53. values: lowercase uppercase capitalize
    54. ),
    55. "white-space": (
    56. property: white-space,
    57. class: text,
    58. values: (
    59. wrap: normal,
    60. nowrap: nowrap,
    61. )
    62. ),
    63. "word-wrap": (
    64. property: word-wrap word-break,
    65. class: text,
    66. values: (break: break-word),
    67. ),