Last active
December 19, 2015 13:59
-
-
Save kevinsimper/5966487 to your computer and use it in GitHub Desktop.
Z-index in old browsere
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- DOES NOT WORK --> | |
<div> | |
<div id="graph" style="z-index: 10"></div> | |
<div id="options"> | |
<div id="popup" style="z-index: 20"></div> | |
</div> | |
</div> | |
<!-- DOES WORK --> | |
<div> | |
<div id="graph" style="z-index: 10"></div> | |
<div id="options"></div> | |
<div id="popup" style="z-index: 20"></div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment