-
-
Save ivan-kalachikov/2c6c9b44f9b70968100e0df6f9388b6a to your computer and use it in GitHub Desktop.
triangle 100% height
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
&::before, | |
&::after { | |
width: 20px; | |
height: 50%; | |
position: absolute; | |
left: 100%; | |
content: ""; | |
} | |
&:before { | |
top: 0px; | |
background: linear-gradient(to right top, #000 50%, transparent 50%); | |
} | |
&:after { | |
top: 50%; | |
background: linear-gradient(to right bottom, #000 50%, transparent 50%); | |
margin-left: 0; | |
border: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment