Skip to main content
U.S. Flag

An official website of the United States government

CMS Design System

Font style

Change an element's font-style property using the font style utility.

Format: .ds-u-font-style--[normal|italic]

.ds-u-font-style--normal
We the People of the United States, in Order to form a more perfect Union
.ds-u-font-style--italic
We the People of the United States, in Order to form a more perfect Union
Code snippet
<section class="example-list">
  <article>
    <code class="ds-u-margin-bottom--1">.ds-u-font-style--normal</code>
    <div class="ds-u-font-style--normal">
      We the People of the United States, in Order to form a more perfect Union
    </div>
  </article>
  <article>
    <code class="ds-u-margin-bottom--1">.ds-u-font-style--italic</code>
    <div class="ds-u-font-style--italic">
      We the People of the United States, in Order to form a more perfect Union
    </div>
  </article>
</section>