Skip to content

Instantly share code, notes, and snippets.

@bbrochier
Last active January 22, 2016 10:54
Show Gist options
  • Save bbrochier/5ac19d7dff2c3dddadee to your computer and use it in GitHub Desktop.
Save bbrochier/5ac19d7dff2c3dddadee to your computer and use it in GitHub Desktop.
CSS Arrows
.arrow-bottom {
border: solid transparent;
border-width: 10px 5px 0 5px;
border-top-color: blue;
}
.arrow-top {
border: solid transparent;
border-width: 0 5px 10px 5px;
border-bottom-color: red;
}
.arrow-right {
border: solid transparent;
border-width: 5px 0 5px 10px;
border-left-color: green;
}
.arrow-left {
border: solid transparent;
border-width: 5px 10px 5px 0;
border-right-color: green;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment