From 1d31067975bb5dfc7f5c7d3898ec2827803e2d12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benoi=CC=82t=20Rouleau?= Date: Wed, 2 Jan 2019 18:11:26 -0500 Subject: [PATCH] Document bg-repeat-round and bg-repeat-space --- source/docs/background-repeat.blade.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/source/docs/background-repeat.blade.md b/source/docs/background-repeat.blade.md index ac7994e2a..458620646 100644 --- a/source/docs/background-repeat.blade.md +++ b/source/docs/background-repeat.blade.md @@ -33,6 +33,16 @@ features: 'background-repeat: repeat-y;', 'Repeat the background image only vertically.', ], + [ + '.bg-repeat-round', + 'background-repeat: round;', + 'Repeat the background image as much as possible without clipping, stretching the image until there is room for another one to be added, leaving no gap between them.', + ], + [ + '.bg-repeat-space', + 'background-repeat: space;', + 'Repeat the background image as much as possible without clipping, distributing whitespace evenly between the images.', + ], ] ])