Created
November 30, 2012 09:48
Revisions
-
JamieMason revised this gist
Nov 30, 2012 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -3,7 +3,8 @@ \*------------------------------------*/ /** * Ordered in the same stacking order as the values define; * Highest first/top to lowest last/bottom */ .foo { z-index: 30; } -
JamieMason created this gist
Nov 30, 2012 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ /*------------------------------------*\ $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; }