I have a \"div\" with style: overflow-y: scroll; overflow-x: auto;
I try to dynamicaly add image inside this \"div\" with absolute or relative position. Everyth
The declaration position: absolute; means that the element will be displayed relative to the view-port's upper left corner. Using relative instead means that the values you use for left and top will be added to wherever the img would have been normally.