+ 1
What actually prevents two imported images from occupying the same position.?
We don't always define the positions for the images, yet they are not superimposed on each other. What actually prevents that?
2 Answers
+ 5
The very positioning of elements when adding to this interferes. Elements line up from left to right, from top to bottom. To overlay one image on another, you must set the position: absolute property, coordinates and z-index to the element that should overlap.
+ 2
Thanks for your response.