Last active
January 22, 2016 10:54
-
-
Save bbrochier/5ac19d7dff2c3dddadee to your computer and use it in GitHub Desktop.
CSS Arrows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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