Skip to content

Instantly share code, notes, and snippets.

@codescribblr
Created April 2, 2014 15:57
Show Gist options
  • Select an option

  • Save codescribblr/9937032 to your computer and use it in GitHub Desktop.

Select an option

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.
.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