Bootstrap 4 Texto/Tipografía


Configuración predeterminada de Bootstrap 4

Bootstrap 4 usa un valor predeterminado font-sizede 16px, y line-heightes 1.5.

El valor predeterminado font-familyes "Helvetica Neue", Helvetica, Arial, sans-serif.

Además, todos los <p>elementos tienen margin-top: 0y margin-bottom: 1rem(16px por defecto).


<h1> - <h6>

Bootstrap 4 diseña encabezados HTML ( <h1>a <h6>) con un peso de fuente más audaz y un tamaño de fuente aumentado:

Ejemplo

h1 Bootstrap heading (2.5rem = 40px)

h2 Bootstrap heading (2rem = 32px)

h3 Bootstrap heading (1.75rem = 28px)

h4 Bootstrap heading (1.5rem = 24px)

h5 Bootstrap heading (1.25rem = 20px)
h6 Bootstrap heading (1rem = 16px)

Mostrar encabezados

Los encabezados de visualización se utilizan para resaltar más que los encabezados normales (tamaño de fuente más grande y peso de fuente más liviano), y hay cuatro clases para elegir: .display-1, .display-2, .display-3,.display-4

Ejemplo

Display 1

Display 2

Display 3

Display 4


<pequeño>

En Bootstrap 4, el <small>elemento HTML se usa para crear un texto secundario más claro en cualquier encabezado:

Ejemplo

h1 heading secondary text

h2 heading secondary text

h3 heading secondary text

h4 heading secondary text

h5 heading secondary text
h6 heading secondary text


<marcar>

Bootstrap 4 diseñará el elemento HTML <mark>con un color de fondo amarillo y algo de relleno:

Ejemplo

Use the mark element to highlight text.


<abr>

Bootstrap 4 diseñará el elemento HTML <abbr>con un borde inferior punteado:

Ejemplo

The WHO was founded in 1948.


<cita en bloque>

Agregue la .blockquoteclase a <blockquote> cuando cite bloques de contenido de otra fuente:

Ejemplo

For 50 years, WWF has been protecting the future of nature. The world's leading conservation organization, WWF works in 100 countries and is supported by 1.2 million members in the United States and close to 5 million globally.


From WWF's website

<dl>

Bootstrap 4 diseñará el <dl>elemento HTML de la siguiente manera:

Ejemplo

Coffee
- black hot drink
Milk
- white cold drink

<código>

Bootstrap 4 diseñará el <code>elemento HTML de la siguiente manera:

Ejemplo

The following HTML elements: span, section, and div defines a section in a document.


<kbd>

Bootstrap 4 diseñará el <kbd>elemento HTML de la siguiente manera:

Ejemplo

Use ctrl + p to open the Print dialog box.


<antes>

Bootstrap 4 diseñará el <pre>elemento HTML de la siguiente manera:

Ejemplo

Text in a pre element
is displayed in a fixed-width
font, and it preserves
both      spaces and
line breaks.

Más clases de tipografía

Las siguientes clases de Bootstrap 4 se pueden agregar para diseñar aún más los elementos HTML:

Class Description Example
.font-weight-bold Bold text
.font-weight-bolder Bolder text
.font-italic Italic text
.font-weight-light Light weight text
.font-weight-lighter Lighter weight text
.font-weight-normal Normal text
.lead Makes a paragraph stand out
.small Indicates smaller text (set to 80% of the size of the parent)
.text-left Indicates left-aligned text
.text-*-left Indicates left-aligned text on small, medium, large or xlarge screens
.text-break Prevents long text from breaking layout
.text-center Indicates center-aligned text
.text-*-center Indicates center-aligned text on small, medium, large or xlarge screens
.text-decoration-none Removes the underline from a link
.text-right Indicates right-aligned text
.text-*-right Indicates right-aligned text on small, medium, large or xlarge screens
.text-justify Indicates justified text
.text-monospace Monospaced text
.text-nowrap Indicates no wrap text
.text-lowercase Indicates lowercased text
.text-reset Resets the color of a text or a link (inherits the color from its parent)
.text-uppercase Indicates uppercased text
.text-capitalize Indicates capitalized text
.initialism Displays the text inside an <abbr> element in a slightly smaller font size
.list-unstyled Removes the default list-style and left margin on list items (works on both <ul> and <ol>). This class only applies to immediate children list items (to remove the default list-style from any nested lists, apply this class to any nested lists as well)
.list-inline Places all list items on a single line (used together with .list-inline-item on each <li> elements)
.pre-scrollable Makes a <pre> element scrollable

Referencia completa de Bootstrap 4 CSS

Para obtener una referencia completa de todas las clases de CSS disponibles en Bootstrap 4, visite nuestra Referencia de todas las clases de Bootstrap 4 .