I am currently facing an issue with a menu and div content. The problem is that the link in the menu is not clickable on IE 11.
What could be causing this problem?
Visit this link for more details
#menu {
position: absolute;
background: red;
width: 100%;
height: 200px;
top: 0;
z-index: -1;
}
#content {
margin-top: 100px;
background: #fff;
width: 90%;
margin: 150px auto;
height: 200px;
}
<div id=menu><a href='#'>LINK (CANT CLICK IE 11)</a>
</div>
<div id=content></div>