0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-09 02:46:15 +01:00
Bootstrap/site/content/docs/4.5/utilities/text.md
XhmikosR b46f05a948 Switch to Hugo
This commit includes all the needed workarounds and most changes from the main branch for everything to work, like:

* removing empty lines in raw HTML that break output
* read .browserslistrc, CSS variables from disk instead of duplicating it
* using Hugo mounts
* using Hugo for the docs CSS/JS
* move ToC Sass code to a separate file while adapting it for Hugo

Thus, this patch makes our npm scripts faster since lint runs on one step and there's no separate docs assets processing.
2020-11-19 11:22:22 +02:00

4.2 KiB

layout title description group toc
docs Text Documentation and examples for common text utilities to control alignment, wrapping, weight, and more. utilities true

Text alignment

Easily realign text to components with text alignment classes.

{{< example >}}

Ambitioni dedisse scripsisse iudicaretur. Cras mattis iudicium purus sit amet fermentum. Donec sed odio operae, eu vulputate felis rhoncus. Praeterea iter est quasdam res quas ex communi. At nos hinc posthac, sitientis piros Afros. Petierunt uti sibi concilium totius Galliae in diem certam indicere. Cras mattis iudicium purus sit amet fermentum.

{{< /example >}}

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

{{< example >}}

Left aligned text on all viewport sizes.

Center aligned text on all viewport sizes.

Right aligned text on all viewport sizes.

Left aligned text on viewports sized SM (small) or wider.

Left aligned text on viewports sized MD (medium) or wider.

Left aligned text on viewports sized LG (large) or wider.

Left aligned text on viewports sized XL (extra-large) or wider.

{{< /example >}}

Text wrapping and overflow

Wrap text with a .text-wrap class.

{{< example >}}

This text should wrap.
{{< /example >}}

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

{{< example >}}

This text should overflow the parent.
{{< /example >}}

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

{{< example >}}

Praeterea iter est quasdam res quas ex communi.
Praeterea iter est quasdam res quas ex communi. {{< /example >}}

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.

{{< example >}}

mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm

{{< /example >}}

Text transform

Transform text in components with text capitalization classes.

{{< example >}}

Lowercased text.

Uppercased text.

CapiTaliZed text.

{{< /example >}}

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.

{{< example >}}

Bold text.

Bolder weight text (relative to the parent element).

Normal weight text.

Light weight text.

Lighter weight text (relative to the parent element).

Italic text.

{{< /example >}}

Monospace

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

{{< example >}}

This is in monospace

{{< /example >}}

Reset color

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

{{< example >}}

Muted text with a reset link.

{{< /example >}}

Text decoration

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

{{< example >}} Non-underlined link {{< /example >}}