Last active
February 22, 2016 08:16
-
-
Save KeithNdhlovu/fca1e61d52e7931f34ee to your computer and use it in GitHub Desktop.
CSS Triangle
This file contains hidden or 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-right { | |
| width: 0; | |
| height: 0; | |
| border-top: 60px solid transparent; | |
| border-bottom: 60px solid transparent; | |
| border-left: 60px solid green; | |
| } |
This file contains hidden or 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
| <div class="arrow-right"></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment