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
I don't know if it is a bug or a "feature" in IE, but I've run into the same thing before. Luckily there is an easy fix. Just add "position:relative
" to the <div>
that has scrollable contents.
You know what, it might just be easier to wrap the absolute positioned elements in a relatively positioned container element, I think that should be able to scroll...