用于控制单个网格项如何沿其内联轴对齐的功能类。
<div class="grid justify-items-stretch ...">
<!-- ... -->
<div class="justify-self-auto ...">1</div>
<!-- ... -->
<!-- ... -->
<!-- ... -->
<!-- ... -->
</div>
<div class="grid justify-items-stretch ...">
<!-- ... -->
<div class="justify-self-start ...">1</div>
<!-- ... -->
<!-- ... -->
<!-- ... -->
<!-- ... -->
</div>
<div class="grid justify-items-stretch ...">
<!-- ... -->
<div class="justify-self-center ...">1</div>
<!-- ... -->
<!-- ... -->
<!-- ... -->
<!-- ... -->
</div>
<div class="grid justify-items-stretch ...">
<!-- ... -->
<div class="justify-self-end ...">1</div>
<!-- ... -->
<!-- ... -->
<!-- ... -->
<!-- ... -->
</div>
<div class="grid justify-items-start ...">
<!-- ... -->
<div class="justify-self-stretch ...">1</div>
<!-- ... -->
<!-- ... -->
<!-- ... -->
<!-- ... -->
</div>
要在特定的断点处控制网格项在其网格区域内的对齐,可以在任何现有的功能类前添加 {screen}:
前缀。例如,使用 md:justify-self-end
来仅在中等尺寸及以上的屏幕应用 justify-self-end
功能。
关于 Tailwind 的响应式设计功能的更多信息,请查看 响应式设计 文档。
默认情况下, 针对 justify-self 功能类,只生成 responsive 变体。
您可以通过修改您的 tailwind.config.js
文件中的 variants
部分中的 justifySelf
属性来控制为 justify-self 功能生成哪些变体。
例如,这个配置也将生成 hover and focus 变体:
// tailwind.config.js
module.exports = {
variants: {
extend: {
// ...
+ justifySelf: ['hover', 'focus'],
}
}
}
如果您不打算在您的项目中使用 justify-self 功能,您可以通过在配置文件的 corePlugins
部分将 justifySelf
property to false
in the corePlugins
section of your config file:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
+ justifySelf: false,
}
}