tailwindcss/docs/source/docs/background-repeat.blade.md
2017-12-03 02:55:40 +01:00

1.0 KiB

extends title description features
_layouts.documentation Background Repeat Utilities for controlling the repetition of an element's background image.
responsive customizable hover focus
true false false false

@include('_partials.work-in-progress')

@include('_partials.class-table', [ 'rows' => [ [ '.bg-repeat', 'background-repeat: repeat;', 'Repeat the background image both vertically and horizontally.', ], [ '.bg-no-repeat', 'background-repeat: no-repeat;', 'Don't repeat the background image.', ], [ '.bg-repeat-x', 'background-repeat: repeat-x;', 'Repeat the background image only horizontally.', ], [ '.bg-repeat-y', 'background-repeat: repeat-y;', 'Repeat the background image only vertically.', ], ] ])

Customizing

@include('_partials.variants-and-disabling', [ 'utility' => [ 'name' => 'background repeat', 'property' => 'backgroundRepeat', ], 'variants' => [ 'responsive', ], ])