diff --git a/guide/english/css/css3-backgrounds/index.md b/guide/english/css/css3-backgrounds/index.md index 8438dbbb9b..82393f0107 100644 --- a/guide/english/css/css3-backgrounds/index.md +++ b/guide/english/css/css3-backgrounds/index.md @@ -90,6 +90,18 @@ It doesn't matter if one property is missing, so long as the order is maintained This will work even if the color and the attachment are missing. +### Multiple Backgrounds + +You can pass in multple background images and set their properties simultaneously. + +```css +   background-image: url("firstimage.jpg"), url("secondimage.jpg"); + background-repeat: no-repeat, repeat; + background-position: left bottom, right bottom; +``` + +You can add individual properties to individual images in their respective order. + #### More Information: MDN