Home › Forums › Other › HTML Image Map › Re: HTML Image Map
July 14, 2012 at 9:56 pm
#106111
Member
You need to set a logical parent container to “position: relative” so that when you set “position: absolute” on each link, it will have the correct context.
For example the way your mark-up is currently, the #content would be a decent place to set “position: relative”.
What happens when you don’t explicitly set the new context on a parent is it uses the highest level it can find, all the way up to the body tag. (which is why your images appeared to be disappearing).