Created
May 27, 2019 14:51
-
-
Save cagartner/b4b1c76ac9ec87e26f27f22c308a59a7 to your computer and use it in GitHub Desktop.
Diagonal CSS container
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
.hero--diagonal { | |
position: relative; | |
background-color: transparent; | |
&::before { | |
content: ''; | |
position: absolute; | |
top: -50px; | |
left: 0; | |
width: 100%; | |
height: calc(100% + 100px); | |
clip-path: polygon(0% 0%, 100% 50px, 100% 100%, 0% calc(100% - 50px)); | |
} | |
.hero__content { | |
position: relative; | |
z-index: 1; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment