用于控制元素背景图片位置的功能类
.bg-left-top
.bg-top
.bg-right-top
.bg-left
.bg-center
.bg-right
.bg-left-bottom
.bg-bottom
.bg-right-bottom
<div class="bg-no-repeat bg-left-top ..." style="background-image: url(...);"></div>
<div class="bg-no-repeat bg-top ..." style="background-image: url(...);"></div>
<div class="bg-no-repeat bg-right-top ..." style="background-image: url(...);"></div>
<div class="bg-no-repeat bg-left ..." style="background-image: url(...);"></div>
<div class="bg-no-repeat bg-center ..." style="background-image: url(...);"></div>
<div class="bg-no-repeat bg-right ..." style="background-image: url(...);"></div>
<div class="bg-no-repeat bg-left-bottom ..." style="background-image: url(...);"></div>
<div class="bg-no-repeat bg-bottom ..." style="background-image: url(...);"></div>
<div class="bg-no-repeat bg-right-bottom ..." style="background-image: url(...);"></div>
要在特定的断点处控制元素背景图像的位置,可以在任何现有的背景位置功能类中添加 {screen}:
前缀。例如,将 md:bg-top
类添加到一个元素中,就可以在中等尺寸以上的屏幕上使用 bg-top
功能类。
<div class="bg-center md:bg-top ..." style="background-image: url(...)"></div>
关于 Tailwind 的响应式设计功能的更多信息,请查看响应式设计文档。
默认情况下,Tailwind 提供了九个 background-position
功能类。您可以通过编辑您的 Tailwind 配置的 theme.backgroundPosition
部分来改变,添加或删除这些功能类。
// tailwind.config.js
module.exports = {
theme: {
backgroundPosition: {
bottom: 'bottom',
+ 'bottom-4': 'center bottom 1rem',
center: 'center',
left: 'left',
- 'left-bottom': 'left bottom',
- 'left-top': 'left top',
right: 'right',
'right-bottom': 'right bottom',
'right-top': 'right top',
top: 'top',
+ 'top-4': 'center top 1rem',
}
}
}
默认情况下, 针对 background position 功能类,只生成 responsive 变体。
您可以通过修改您的 tailwind.config.js
文件中的 variants
部分中的 backgroundPosition
属性来控制为 background position 功能生成哪些变体。
例如,这个配置也将生成 hover and focus 变体:
// tailwind.config.js
module.exports = {
variants: {
extend: {
// ...
+ backgroundPosition: ['hover', 'focus'],
}
}
}
如果您不打算在您的项目中使用 background position 功能,您可以通过在配置文件的 corePlugins
部分将 backgroundPosition
property to false
in the corePlugins
section of your config file:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
+ backgroundPosition: false,
}
}