Here’s is the code http://jsfiddle.net/DTYEB/14/ , the images there overlap each other i want them beside each other. I can change the position to relative in css class .container{} but functionality of the app changes so is there any way to have spacing between the elements
Here’s is the code http://jsfiddle.net/DTYEB/14/ , the images there overlap each other i want
Share
If you look at developer tools, you will find that each div enclosing each images has position absolute with the same coordinates.
The issue is there:
Do this:
And create a parent div which has an absolute position.
This is one solution among a lot.