Last active
September 24, 2015 16:33
-
-
Save a-double/4a70589a9064c1b21099 to your computer and use it in GitHub Desktop.
Tooltip Arrows
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
| /* Based on http://cssarrowplease.com, I just forget the URL all the time */ | |
| .tooltip { | |
| position: relative; | |
| background: #fff; | |
| border: 1px solid #ddd; | |
| } | |
| .tooltip::before, .tooltip::after { | |
| content: ''; | |
| bottom: 100%; | |
| left: 50%; | |
| width: 0; | |
| height: 0; | |
| pointer-events: none; | |
| border: solid transparent; | |
| } | |
| .tooltip::after { | |
| border: 30px solid transparent; | |
| border-bottom-color: #fff; | |
| margin-left: -30px; | |
| } | |
| .tooltip::before { | |
| border-bottom: 32px solid transparent; | |
| border-bottom-color: #ddd; | |
| margin-left: -32px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment