Skip to content

Instantly share code, notes, and snippets.

@moxdev
Created January 30, 2019 21:54
Show Gist options
  • Save moxdev/dc916633d5cc29ae37b2a344f60d1809 to your computer and use it in GitHub Desktop.
Save moxdev/dc916633d5cc29ae37b2a344f60d1809 to your computer and use it in GitHub Desktop.
Diamond Square Pure CSS
// 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