Skip to content

Instantly share code, notes, and snippets.

@uhtred
Created October 19, 2012 16:39
Show Gist options
  • Save uhtred/3919239 to your computer and use it in GitHub Desktop.
Save uhtred/3919239 to your computer and use it in GitHub Desktop.
CSS: Shapes
/**
* CSS3 Usual Shapes
*/
/* Arrow 1 */
#left-triangle {
width: 0;
height: 0;
border-right: 5px solid gray;
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
}
#left-triangle:after {
content: '';
display: block;
width: 0;
height: 0;
border-right: 5px solid white;
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
margin: -5px 0 0 2px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment