Created
September 27, 2016 22:59
-
-
Save ryanve/a3d48135aa307d6482223a21964e596d to your computer and use it in GitHub Desktop.
Link masking example
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
| .is-relative { | |
| position: relative; | |
| } | |
| .is-mask::after { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| bottom: 0; | |
| content: ''; } | |
| .is-mask-label { | |
| } | |
| .is-behind, | |
| .is-behind * { | |
| z-index: -1; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment