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 */
This commit is contained in:
Krevit
2018-12-13 02:38:36 +01:00
committed by Tom
parent 15704be277
commit c14653a86c

View File

@ -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 */
}
```