MepeElupket
New Member
In IE 10, I have a relatively positioned wrapper div with some content (an image / text). Inside of that div is an absolutely positioned anchor tag which is positioned to "cover" the entire wrapper div. It has a z-index set. So the entire area inside the wrapper div should be clickable. However, only the areas in the wrapper div that don't have content are clickable. The entire wrapper div is clickable in all other browsers except for IE 10. Here is a fiddle: http://jsfiddle.net/NUyhF/3/. Help?\[code\]<div class="wrapper"> <div class="imgWrapper"> <img src="http://www.google.com/images/srpr/logo4w.png" /> </div> <p>Here is some text</p> <a href="http://stackoverflow.com/questions/15662687/#"></a></div>.wrapper { position : relative; width: 500px; height: 300px; }.wrapper a { position: absolute; top: 0px; width: 500px; height: 300px; z-index: 2; }\[/code\]