Skip to content

Instantly share code, notes, and snippets.

@rblakejohnson
Created July 1, 2013 17:15
Show Gist options
  • Select an option

  • Save rblakejohnson/5902721 to your computer and use it in GitHub Desktop.

Select an option

Save rblakejohnson/5902721 to your computer and use it in GitHub Desktop.
CSS: Triangle on top
.flyout {
position: relative;
}
.flyout:before {
content: '';
display: block;
height: 0;
border: 8px solid transparent;
border-bottom-color: red;
position: absolute;
top: -16px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment