Created
April 2, 2014 15:57
-
-
Save codescribblr/9937032 to your computer and use it in GitHub Desktop.
This css allows you to create an arrow off of a box element to give it the chat bubble effect.
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
| .dropdown-menu { | |
| top:90px; | |
| left:30px; | |
| padding:10px; | |
| background-color: #ebebeb; | |
| border: 1px solid #c4c4c4; | |
| border-radius: 5px; | |
| } | |
| .dropdown-menu:before { | |
| content: ' '; | |
| height:0; | |
| position:absolute; | |
| width:0; | |
| border: 12px solid transparent; | |
| border-bottom-color: #c4c4c4; | |
| left: 20px; | |
| top:-25px; | |
| } | |
| .dropdown-menu:after { | |
| content: ' '; | |
| height:0; | |
| position:absolute; | |
| width:0; | |
| border: 12px solid transparent; | |
| border-bottom-color: #ebebeb; | |
| left: 20px; | |
| top:-24px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment