From 3362da66dc7b86802f07e82c629b287cc456de73 Mon Sep 17 00:00:00 2001 From: Sai Kiran Date: Thu, 13 Dec 2018 08:26:21 +0530 Subject: [PATCH] Add the "Multiple Backgrounds " section (#25910) Multiple backgrounds section has been added to the article with repective css --- guide/english/css/css3-backgrounds/index.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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