Skip to content

Instantly share code, notes, and snippets.

@LindseyWhitney
Created December 10, 2015 21:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LindseyWhitney/e37b36aa00ffd6b35696 to your computer and use it in GitHub Desktop.
Save LindseyWhitney/e37b36aa00ffd6b35696 to your computer and use it in GitHub Desktop.
Creating arrows using CSS only.
.arrow-up {
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid black;
}
.arrow-down {
width: 0;
height: 0;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
border-top: 20px solid #f00;
}
.arrow-right {
width: 0;
height: 0;
border-top: 60px solid transparent;
border-bottom: 60px solid transparent;
border-left: 60px solid green;
}
.arrow-left {
width: 0;
height: 0;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-right:10px solid blue;
}
@LindseyWhitney
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment