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.
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: green;
}
#GFG {
background-image:
background-position: center, center;
background-repeat: no-repeat, no-repeat;
background-size: 400px 200px, 500px 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 >
|
Output:

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:
center no-repeat,
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 >
|
Output:

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
08 Feb, 2019
Like Article
Save Article