Typography
Utilities for controlling the amount of empty space shown before text in a block.
Use the indent-{width}
utilities to set the amount of empty space (indentation) that’s shown before text in a block.
So I started to walk into the water. I won't lie to you boys, I was terrified. But I pressed on, and as I made my way past the breakers a strange calm came over me. I don't know if it was divine intervention or the kinship of all living things but I tell you Jerry at that moment, I was a marine biologist.
<p class="indent-8">
So I started to walk into the water. I won't lie to you boys, I was
terrified. But I pressed on, and as I made my way past the breakers
a strange calm came over me. I don't know if it was divine intervention
or the kinship of all living things but I tell you Jerry at that moment,
I <em>was</em> a marine biologist.
</p>
To use a negative text indent value, prefix the class name with a dash to convert it to a negative value.
<div class="-indent-8">
So I started to walk into the water. I won't lie to...
</div>
Tailwind lets you conditionally apply utility classes in different states using variant modifiers. For example, use hover:indent-8
to only apply the indent-8
utility on hover.
<div class="indent-4 hover:indent-8">
<!-- ... -->
</div>
For a complete list of all available state modifiers, check out the Hover, Focus, & Other States documentation.
You can also use variant modifiers to target media queries like responsive breakpoints, dark mode, prefers-reduced-motion, and more. For example, use md:indent-8
to apply the indent-8
utility at only medium screen sizes and above.
<div class="indent-4 md:indent-8">
<!-- ... -->
</div>
To learn more, check out the documentation on Responsive Design, Dark Mode and other media query modifiers.
The default text indent scale is based on the default spacing scale. You can customize your spacing scale by editing theme.spacing
or theme.extend.spacing
in your tailwind.config.js
file.
module.exports = {
theme: {
extend: {
spacing: {
'128': '32rem',
}
}
}
}
Alternatively, you can customize just the text indent scale by editing theme.textIndent
or theme.extend.textIndent
in your tailwind.config.js
file.
module.exports = {
theme: {
extend: {
textIndent: {
'128': '32rem',
}
}
}
}
Learn more about customizing the default theme in the theme customization documentation.
If you need to use a one-off text-indent
value that doesn’t make sense to include in your theme, use square brackets to generate a property on the fly using any arbitrary value.
<div class="indent-[50%]">
<!-- ... -->
</div>
Learn more about arbitrary value support in the arbitrary values documentation.