Skip to content

Instantly share code, notes, and snippets.

@gavinblair
Created February 26, 2013 15:47
Show Gist options
  • Save gavinblair/5039470 to your computer and use it in GitHub Desktop.
Save gavinblair/5039470 to your computer and use it in GitHub Desktop.
#box{
display: block;
height: 100px;
width: 100px;
background: green;
position: relative;
opacity: .5;
border: 2px solid blue;
}
#box:after{
content: "▼";
color: green;
display: block;
position: absolute;
left: 78%;
bottom: -12px;
text-shadow: 0px 4px 0px blue;
-webkit-transform: scaleY(.7);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment