Define different styles for headings.
Combine this component with the Text component to style your headings.
Add one of the following classes to modify the size and style of headings. Usually, these classes would be used on heading elements, but they work also with any other element like a div element. Note that these classes extend the heading classes from the Base component upward, and the smallest modifier picks up the size after h1 element.
| Class | Description |
|---|---|
.uk-heading-small |
Add this class to apply a small-sized heading. |
.uk-heading-medium |
Add this class to apply a medium-sized heading. |
.uk-heading-large |
Add this class to apply a large-sized heading. |
.uk-heading-xlarge |
Add this class to apply a xlarge-sized heading. |
.uk-heading-2xlarge |
Add this class to apply a 2xlarge-sized heading. |
.uk-heading-3xlarge |
Add this class to apply a 3xlarge-sized heading. |
<h1 class="uk-heading-medium"></h1><h1 class="uk-heading-small">Small</h1>
<h1 class="uk-heading-medium">Medium</h1>
<h1 class="uk-heading-large">Large</h1>
<h1 class="uk-heading-xlarge">X-Large</h1>
<h1 class="uk-heading-2xlarge">2X-Large</h1>
<h1 class="uk-heading-3xlarge">3X-Large</h1>To apply a divider to a heading, add the .uk-heading-divider class. You can combine it with any size modifier.
<h1 class="uk-heading-divider"></h1>To apply a bullet to a heading, add the .uk-heading-bullet class. You can combine it with any size modifier, and it works well with text alignment.
<h1 class="uk-heading-bullet"></h1>To apply a vertically centered line to a heading, add the .uk-heading-line class and place a <span> element inside the heading element. You can combine it with any size modifier, and it works well with text alignment.
<h1 class="uk-heading-line"><span></span></h1>