How To Set Multiple Background Images Using Css

admin_img Posted By Bajarangi soft , Posted On 09-10-2020

The multiple background images for an element can be put in the HTML page using CSS. Use CSS background property to add multiple background images for an element in any pattern and use other CSS property to set the height and width of the images.

Multiple background images in css

The used background property are listed below:

  • background-image: url(), url(), …; This property is used to set one or more background images to the element, separated by commas.
  • background-position: right bottom, left top; This property is used to set the position of different images in the page. It set the initial position for each background image.
  • background-repeat: no-repeat, repeat; This property is used to set the repetition of the background images. The background image can be repeated along the horizontal and vertical axis.
  • background-size: cover|contain|30%|200px 100px; This property is used to set the size of the element background image
Example 1: 
Use individual background property to specify the multiple background images.
<!DOCTYPE html>
<html>

<head>
    <style>
        body {
            text-align:center;
        }
        h1 {
            color: #b219d4;
        }
        #GFG {
            background-image:
                    url(logo.jpg),
                    url(b1.jpg);

            background-position: center, center;
            background-repeat: no-repeat, no-repeat;
            background-size: 400px 200px, 500px 400px;
            padding:25px;
            height:421px;
        }
h2{
    color: #14f59b;
}
    </style>
</head>

<body>
<div id = "GFG">

    <h1>Bajarangi Soft</h1>

    <h2>Set Multiple Backgrounds</h2>
<br>
   <br>
</div>
</body>

</html>
Example 2: 
Use background shorthand property to specify the multiple background images.
<!DOCTYPE html>
<html>

<head>
    <style>
        h1 {
            color: green;
        }
        body {
            text-align: center;
        }
        #GFG {
            background:
                    url(https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-6-1.png)
                    center no-repeat,
                    url(https://media.geeksforgeeks.org/wp-content/uploads/backgroundimage-1.png)
                    center no-repeat;

            background-size:400px 200px, 400px 400px;
            padding:25px;
            height:400px;
        }
    </style>
</head>

<body>
<div id = "GFG">

    <h1>GeeksforGeeks</h1>

    <h2>Set Multiple Backgrounds</h2>

    <p>
        Element contains two background images
    </p>
</div>
</body>

</html>

Related Post