Created
July 1, 2013 17:19
-
-
Save rblakejohnson/5902756 to your computer and use it in GitHub Desktop.
Flyout with 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
| <div class="flyout">Box. Lorem ipsum dolor sit met, consect etur dip * isicing elit, sed do eus mod * temp or incididunt ut labore et dolore magna aliqua.</div> |
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; | |
| margin: 2em; | |
| border: 1px solid red; | |
| width: 280px; | |
| padding: 0.6em; | |
| } | |
| .flyout:before { | |
| content: ''; | |
| display: block; | |
| height: 0; | |
| border: 10px solid transparent; | |
| border-bottom-color: red; | |
| position: absolute; | |
| top: -20px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment