Skip to content

Instantly share code, notes, and snippets.

@morningtoast
Created April 23, 2014 15:22
Show Gist options
  • Save morningtoast/11219767 to your computer and use it in GitHub Desktop.
Save morningtoast/11219767 to your computer and use it in GitHub Desktop.
CSS mini arrow
<style>
.arrowme:after {
position: absolute;
display: inline-block;
content: '';
margin-left: 10px;
border-top: 6px solid transparent;
border-bottom: 6px solid transparent;
border-left: 6px solid #000;
margin-top: 9px;
}
</style>
<div class="arrowme">text here</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment