0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00
Bootstrap/docs/4.0/utilities/text.md
Mark Otto 0a420124ea
Restyle code element, remove docs example overflow, improve docs examples (#25054)
* Restyle code element, clean up variables

- Removes the padding and background-color
- Changes the color to a brand color ()
- Add new variables to kbd element styles to account for removing the code ones
- Remove overrides that were needed previously

* only break between words, and override it in the pre

* make file inputs 100% wide

* scope custom file changes in input group for sizing

* shorter button labels for responsive

* narrower cards

* button was too wide

* downsize

* fewer links in pagination

* redo cell text

* improve overflow docs
2017-12-22 16:49:57 -08:00

2.8 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 html %}

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.

{% endexample %}

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

{% example html %}

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.

{% endexample %}

Text wrapping and overflow

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

{% example html %}

This text should overflow the parent.
{% endexample %}

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 html %}

Praeterea iter est quasdam res quas ex communi.
Praeterea iter est quasdam res quas ex communi. {% endexample %}

Text transform

Transform text in components with text capitalization classes.

{% example html %}

Lowercased text.

Uppercased text.

CapiTaliZed text.

{% endexample %}

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 html %}

Bold text.

Normal weight text.

Light weight text.

Italic text.

{% endexample %}