From c14653a86c049415c554a4232ca26c751f87091c Mon Sep 17 00:00:00 2001 From: Krevit <39970181+Krevit@users.noreply.github.com> Date: Thu, 13 Dec 2018 02:38:36 +0100 Subject: [PATCH] Add comment to article (#25498) Comment added to css example for multiple background images - /* first image is 3x3 px, second image covers the whole area */ --- 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 406a71a8f5..732206535d 100644 --- a/guide/english/css/background-size/index.md +++ b/guide/english/css/background-size/index.md @@ -25,6 +25,7 @@ To set this property on multiple background images, separate the values by a com .multiple { background-image: url(1.png), url(2.png); background-size: 3px 3px, cover; + /* first image is 3x3 px, second image covers the whole area */ } ```