Created
January 30, 2019 21:54
-
-
Save moxdev/dc916633d5cc29ae37b2a344f60d1809 to your computer and use it in GitHub Desktop.
Diamond Square Pure CSS
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
// Diamond Square | |
// https://css-tricks.com/the-shapes-of-css/ | |
#diamond { | |
width: 0; | |
height: 0; | |
border: 50px solid transparent; | |
border-bottom-color: red; | |
position: relative; | |
top: -50px; | |
} | |
#diamond:after { | |
content: ''; | |
position: absolute; | |
left: -50px; | |
top: 50px; | |
width: 0; | |
height: 0; | |
border: 50px solid transparent; | |
border-top-color: red; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment