Skip to content

Instantly share code, notes, and snippets.

@i5ar
Created August 21, 2014 00:45
Show Gist options
  • Save i5ar/83060a59cd388bb08b5b to your computer and use it in GitHub Desktop.
Save i5ar/83060a59cd388bb08b5b to your computer and use it in GitHub Desktop.
Triangle
/* Triangle */
.triangle { position: relative; }
.triangle::before {
border-top: 0;
border-right: 175px solid transparent;
border-bottom: 175px solid transparent;
border-left: 175px solid #af2715;
position: absolute;
content: "";
z-index:3;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment