206k views
5 votes
How to put an image below another image in css?

User Lord Midi
by
7.7k points

1 Answer

5 votes

Final answer:

To position an image below another image in CSS, use the CSS position property. Set the 'position' of the container to 'relative' and the position of the second image to 'absolute' with a specified 'top' or 'bottom' value.

Step-by-step explanation:

Achieving a layered effect with images in CSS involves manipulating the positioning properties. First, ensure the container holding both images has a 'position: relative;' style. This establishes a positioning context for the child elements. For the second image, set its 'position: absolute;' and use 'top', 'bottom', 'left', or 'right' to control its placement relative to the container or other positioned elements. For instance, to place the second image below the first one set its top property to the height of the first image.

.image-container {

position: relative;

}

.second-image {

position: absolute;

top: 100px; /* Adjust as needed based on the height of the first image */

}

This approach allows for flexible image positioning, facilitating the creation of visually appealing layouts.

User Ikrom
by
7.9k points