I am working on CSS design template.
I have two images imageOne and imageTwo.
Both are position: relative because if I
When you have elements within a container which has the property: position: relative;
then any elements within that container which have the property: position: absolute;
will have their offset origin set to the top-left of the container.
For example,
The first absolute child will be positioned at (50px, 100px) relative to the body, or (0,0) from the container.
But the second child will be positioned at (10px, 20px) relative to container, or (60px, 120px) relative to the body (add 50+10 from the top, 100+20 from the left).