Created
November 30, 2012 09:48
-
-
Save JamieMason/4174845 to your computer and use it in GitHub Desktop.
Keep all z-index definitions in the same file to keep track of them more easily
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
/*------------------------------------*\ | |
$Z-INDEXES | |
\*------------------------------------*/ | |
/** | |
* Ordered in the same stacking order as the values define; | |
* Highest first/top to lowest last/bottom | |
*/ | |
.foo { z-index: 30; } | |
.bar { z-index: 20; } | |
.baz { z-index: 10; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Simply brilliant! Thank you!!!