Skip to content

Instantly share code, notes, and snippets.

@rodrigoluizgenz
Created September 29, 2013 15:17
Show Gist options
  • Select an option

  • Save rodrigoluizgenz/6753344 to your computer and use it in GitHub Desktop.

Select an option

Save rodrigoluizgenz/6753344 to your computer and use it in GitHub Desktop.
.wrong-triangle {
content: "";
width: 0;
height: 0;
border-top: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid black;
border-left: 5px solid transparent;
}
.right-triangle {
content: "";
width: 0;
height: 0;
border-top: 5px solid rgba(255, 255, 255, 0);
border-right: 5px solid rgba(255, 255, 255, 0);
border-bottom: 5px solid black;
border-left: 5px solid rgba(255, 255, 255, 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment