Adjust css examples formatting (#26127)

This commit is contained in:
David Way
2018-12-13 05:03:03 +00:00
committed by Tom
parent 18d5502965
commit 012e93154b
35 changed files with 303 additions and 326 deletions

View File

@ -23,9 +23,9 @@ the second one will be set to auto by default.
To set this property on multiple background images, separate the values by a comma:
```css
.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 */
background-image: url(1.png), url(2.png);
background-size: 3px 3px, cover;
/* first image is 3x3 px, second image covers the whole area */
}
```