Skip to content

Instantly share code, notes, and snippets.

@ha404
Created May 10, 2012 15:30
Show Gist options
  • Save ha404/2653919 to your computer and use it in GitHub Desktop.
Save ha404/2653919 to your computer and use it in GitHub Desktop.
Arrow after speech bubbles
.element::after {
content: "";
position: absolute; // make the <element> positioned relative
top: 0; // position this where you want the bubble
left: 0;
border: 15px solid transparent;
border-bottom-color: red;
display: block;
width: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment