Skip to content

Instantly share code, notes, and snippets.

@Takazudo
Created May 27, 2011 04:14
Show Gist options
  • Save Takazudo/994627 to your computer and use it in GitHub Desktop.
Save Takazudo/994627 to your computer and use it in GitHub Desktop.
/* make pure css triangle */
.cssTriangle{
display:block;
height:20px;
position:relative;
overflow:hidden;
}
.cssTriangle span{
position: absolute;
width: 0;
height: 0;
left: 60px;
top: -1px;
border:17px solid;
border-color:#8f8f8f transparent transparent transparent;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment