Documentación offline Tailwind CSS main
por @raupulus

font-style

main Ver versión oficial en línea Licencia MITDescargado el 2026-09-15 Bundle .md (1.3 MB) ↓

En esta página
Clase Propiedades CSS
italic font-style: italic;
not-italic font-style: normal;

Examples#

Italicizing text#

Use the italic utility to make text italic:

{

The quick brown fox jumps over the lazy dog.

}

<!-- [!code classes:italic] -->
<p class="italic ...">The quick brown fox ...</p>

Displaying text normally#

Use the not-italic utility to display text normally:

{

The quick brown fox jumps over the lazy dog.

}

<!-- [!code classes:not-italic] -->
<p class="not-italic ...">The quick brown fox ...</p>

Responsive design#