Back to typography Classes

text-xl

Usage

<div class="text-xl">
  <!-- Your content here -->
</div>

Examples

Here are some examples of how to use the text-xl class:

<!-- Basic usage -->
<div class="text-xl">
  Content
</div>

<!-- With other classes -->
<div class="text-xl p-4 bg-white">
  Content with padding and background
</div>