html - Link Above a Div with a Low Z-Index -
my situation this:
i have div z-index of -15. have div, within div, has z-index of 15.
i ran exact code in jsfiddle, , worked in jsfiddle not me in notepad when opened in google chrome.
#contentdiv { position: absolute; width: 100%; height: 100%; background-color: #ebebeb; z-index: -15; font-family: arial; } #link { position: absolute; width: 143; height: 216; z-index: 15; }
<div id="contentdiv"> <div id="link"> <a href="link.html">link</a> </div> </div>
Comments
Post a Comment