Skip to content

Instantly share code, notes, and snippets.

@kevinsimper
Last active December 19, 2015 13:59
Show Gist options
  • Save kevinsimper/5966487 to your computer and use it in GitHub Desktop.
Save kevinsimper/5966487 to your computer and use it in GitHub Desktop.
Z-index in old browsere
<!-- 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