用于控制内联或表格单元格的垂直对齐的功能类。
<span class="inline-block align-baseline ...">...</span>
<span class="inline-block align-top ...">...</span>
<span class="inline-block align-middle ...">...</span>
<span class="inline-block align-bottom ...">...</span>
<span class="inline-block align-text-top ...">...</span>
<span class="inline-block align-text-bottom ...">...</span>
要仅在特定的断点处控制垂直对齐,请在任何现有的垂直对齐功能类中添加 {screen}:
前缀。例如,添加类 md:align-top
到一个元素中,就会在中等尺寸以上的屏幕上使用 align-top
功能类。
<div class="relative">
<span class="align-middle md:align-top ...">...</span>
<span>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</span>
</div>
关于 Tailwind 的响应式设计功能的更多信息,请查看响应式设计文档。
默认情况下, 针对 vertical-alignment 功能类,只生成 responsive 变体。
您可以通过修改您的 tailwind.config.js
文件中的 variants
部分中的 verticalAlign
属性来控制为 vertical-alignment 功能生成哪些变体。
例如,这个配置也将生成 hover and focus 变体:
// tailwind.config.js
module.exports = {
variants: {
extend: {
// ...
+ verticalAlign: ['hover', 'focus'],
}
}
}
如果您不打算在您的项目中使用 vertical-alignment 功能,您可以通过在配置文件的 corePlugins
部分将 verticalAlign
property to false
in the corePlugins
section of your config file:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
+ verticalAlign: false,
}
}