Created
December 3, 2014 14:54
-
-
Save trevor-atlas/e6815738d856f512ee56 to your computer and use it in GitHub Desktop.
pseudo element triangle border
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
| .element:before { | |
| content: ''; | |
| width: 0; | |
| height: 0; | |
| border-style: solid; | |
| border-width: 0 50px 50px 0; | |
| border-color: transparent grey transparent transparent; | |
| position: absolute; | |
| top: 0; | |
| right: 0; | |
| background-color: red; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment