Utilities for controlling the amount of empty space shown before text in a block.
<table style="display: table;">
<thead>
<tr>
<th style="text-align: center;">Class</th>
<th style="text-align: center;">Properties</th>
</tr>
</thead>
<tbody>
<tr><td>indent-<i><float></i></td><td>text-indent: <i><float / 4></i>rem;</td></tr>
<tr><td>indent-<i><integer>/<integer></i></td><td>text-indent: (<i><integer>/<integer></i>)%;</td></tr>
<tr><td>indent-px</td><td>text-indent: 1px;</td></tr>
</tbody>
</table>
### Tailwind compatibility
Indent values don't follow Tailwind's philosophy of limiting possible values and all spacing values
are supported. They are however perfectly compatible with Tailwind's values.
### Arbitrary values
Any [`<length>`](crate::utils::value_matchers::is_matching_length) property is allowed as arbitrary value.
For example, `indent-[1.2rem]`.
### Negative values
This plugin supports negative values. For example, `-indent-2` or `hover:-indent-2`.
[Tailwind reference](https://tailwindcss.com/docs/text-indent)