Backgrounds
Utilities for controlling the repetition of an element's background image.
Class | Styles |
---|---|
bg-repeat | background-repeat: repeat; |
bg-repeat-x | background-repeat: repeat-x; |
bg-repeat-y | background-repeat: repeat-y; |
bg-repeat-space | background-repeat: space; |
bg-repeat-round | background-repeat: round; |
bg-no-repeat | background-repeat: no-repeat; |
Use the bg-repeat
utility to repeat the background image both vertically and horizontally:
Use the bg-repeat-x
utility to only repeat the background image horizontally:
Use the bg-repeat-y
utility to only repeat the background image vertically:
Use the bg-repeat-space
utility to repeat the background image without clipping:
Use the bg-repeat-round
utility to repeat the background image without clipping, stretching if needed to avoid gaps:
Use the bg-no-repeat
utility to prevent a background image from repeating:
Prefix a background-repeat
utility with a breakpoint variant like md:
to only apply the utility at medium screen sizes and above:
<div class="bg-repeat md:bg-repeat-x ..."> <!-- ... --></div>
Learn more about using variants in the variants documentation.