1. 背景
  2. 背景重复

Quick reference

Class
Properties
bg-repeatbackground-repeat: repeat;
bg-no-repeatbackground-repeat: no-repeat;
bg-repeat-xbackground-repeat: repeat-x;
bg-repeat-ybackground-repeat: repeat-y;
bg-repeat-roundbackground-repeat: round;
bg-repeat-spacebackground-repeat: space;

基本用法

¥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 lets you conditionally apply utility classes in different states using variant modifiers. For example, use hover:bg-repeat-x to only apply the bg-repeat-x utility on hover.

<div class="bg-repeat hover:bg-repeat-x">
  <!-- ... -->
</div>

For a complete list of all available state modifiers, check out the Hover, Focus, & Other States documentation.

断点和媒体查询

You can also use variant modifiers to target media queries like responsive breakpoints, dark mode, prefers-reduced-motion, and more. For example, use md:bg-repeat-x to apply the bg-repeat-x utility at only medium screen sizes and above.

<div class="bg-repeat md:bg-repeat-x">
  <!-- ... -->
</div>

To learn more, check out the documentation on Responsive Design, Dark Mode and other media query modifiers.