背景
用于控制元素背景图片重复的工具。
¥Basic usage
¥Repeat
使用 bg-repeat
在垂直和水平方向重复背景图片。
¥Use bg-repeat
to repeat the background image both vertically and horizontally.
<div class="bg-repeat ..." style="background-image: url(...)"></div>
¥No Repeat
当你不想重复背景图片时,请使用 bg-no-repeat
。
¥Use bg-no-repeat
when you don’t want to repeat the background image.
<div class="bg-no-repeat bg-center ..." style="background-image: url(...)"></div>
¥Repeat Horizontally
使用 bg-repeat-x
仅水平重复背景图片。
¥Use bg-repeat-x
to repeat the background image only horizontally.
<div class="bg-repeat-x bg-center ..." style="background-image: url(...)"></div>
¥Repeat Vertically
使用 bg-repeat-y
仅垂直重复背景图片。
¥Use bg-repeat-y
to repeat the background image only vertically.
<div class="bg-repeat-y bg-center ..." style="background-image: url(...)"></div>
Tailwind 允许你使用变体修饰符在不同状态下有条件地应用工具类。例如,使用hover:bg-repeat-x
仅在 hover 时应用 bg-repeat-x
工具。
<div class="bg-repeat hover:bg-repeat-x">
<!-- ... -->
</div>
有关所有可用状态修饰符的完整列表,请查看悬停、聚焦、以及其他状态 文档。
你还可以使用变体修饰符来定位媒体查询,例如响应式断点、暗黑模式、首选减少运动等。例如,使用 md:bg-repeat-x
仅在中等屏幕尺寸及以上时应用 bg-repeat-x
工具。
<div class="bg-repeat md:bg-repeat-x">
<!-- ... -->
</div>