Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save rblakejohnson/5902756 to your computer and use it in GitHub Desktop.
Flyout with triangle on top
<div class="flyout">Box. Lorem ipsum dolor sit met, consect etur dip * isicing elit, sed do eus mod * temp or incididunt ut labore et dolore magna aliqua.</div>
.flyout {
position: relative;
margin: 2em;
border: 1px solid red;
width: 280px;
padding: 0.6em;
}
.flyout:before {
content: '';
display: block;
height: 0;
border: 10px solid transparent;
border-bottom-color: red;
position: absolute;
top: -20px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment