From 9242e9ee5ffe317d5b8ce7bb9ab1cbf99d6775bd Mon Sep 17 00:00:00 2001 From: Amoo Olusola Simeon Date: Mon, 22 Oct 2018 19:49:42 +0100 Subject: [PATCH] Update index.md (#21043) Added comment at the beginning of the css code. --- guide/english/css/background-size/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/guide/english/css/background-size/index.md b/guide/english/css/background-size/index.md index 415a8c48e8..ce776c2994 100644 --- a/guide/english/css/background-size/index.md +++ b/guide/english/css/background-size/index.md @@ -6,6 +6,7 @@ title: Background Size The background-size property specifies the size of the background images. You can set a length or a percentage, with the first value being the width and the second one being the height. You can also use one of the 5 keyword values: ```css +/* Background size property values that can be used */ .auto {background-size: auto;} .cover {background-size: cover;} .contain {background-size: contain;}