Created
July 1, 2013 17:15
-
-
Save rblakejohnson/5902721 to your computer and use it in GitHub Desktop.
CSS: Triangle on top
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
| .flyout { | |
| position: relative; | |
| } | |
| .flyout:before { | |
| content: ''; | |
| display: block; | |
| height: 0; | |
| border: 8px solid transparent; | |
| border-bottom-color: red; | |
| position: absolute; | |
| top: -16px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment