Skip to content

Instantly share code, notes, and snippets.

@markcarrrr
Last active August 29, 2015 13:59
Show Gist options
  • Save markcarrrr/10971618 to your computer and use it in GitHub Desktop.
Save markcarrrr/10971618 to your computer and use it in GitHub Desktop.
CSS Triangles
.triangle-up {
border-bottom: 10px solid red;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
height: 0;
width: 0;
}
.triangle-down {
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px solid green;
height: 0;
width: 0;
}
.triangle-right {
border-bottom: 10px solid transparent;
border-left: 10px solid blue;
border-top: 10px solid transparent;
height: 0;
width: 0;
}
.triangle-left {
border-bottom: 10px solid transparent;
border-right: 10px solid yellow;
border-top: 10px solid transparent;
height: 0;
width: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment