排版
用于控制块级元素中文本前显示的空白量。
使用 indent-{width}
实用程序来设置块中文本之前显示的空白量(缩进)。
所以我开始走进水里。我不会对你们撒谎,我当时很害怕。但我还是坚持了下来,当我越过浪头时,一种奇怪的平静感涌上心头。我不知道是神圣的干预还是所有生物的亲缘关系,但我要告诉你,杰瑞,那一刻,我就是一名海洋生物学家。
<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>
要使用负文本缩进值,请在类名前添加一个连字符将其转换为负值。
<div class="-indent-8">
So I started to walk into the water. I won't lie to...
</div>
Tailwind 允许您使用变体修饰符在不同状态下有条件地应用实用程序类。例如,使用 hover:indent-8
仅在悬停时应用 indent-8
实用程序。
<div class="indent-4 hover:indent-8">
<!-- ... -->
</div>
有关所有可用状态修饰符的完整列表,请查看 悬停、聚焦和其它状态 文档。
您还可以使用变体修饰符来定位媒体查询,例如响应式断点、暗黑模式、 prefers-reduced-motion 等等。例如,使用 md:indent-8
仅在中等屏幕尺寸及以上应用 indent-8
实用程序。
<div class="indent-4 md:indent-8">
<!-- ... -->
</div>
要了解更多信息,请查看有关 响应式设计、暗黑模式 和 其他媒体查询修饰符 的文档。
默认文本缩进比例基于 默认间距比例。您可以通过在 tailwind.config.js
文件中编辑 theme.spacing
或 theme.extend.spacing
来自定义您的间距比例。
module.exports = {
theme: {
extend: {
spacing: {
'128': '32rem',
}
}
}
}
或者,您可以通过在 tailwind.config.js
文件中编辑 theme.textIndent
或 theme.extend.textIndent
来仅自定义文本缩进比例。
module.exports = {
theme: {
extend: {
textIndent: {
'128': '32rem',
}
}
}
}
在 主题自定义 文档中了解有关自定义默认主题的更多信息。
如果您需要使用一次性的 `text-indent` 值,而该值不适合包含在您的主题中,请使用方括号使用任意值动态生成属性。
<div class="indent-[50%]">
<!-- ... -->
</div>
在 任意值 文档中了解有关任意值支持的更多信息。