Skip to content

Instantly share code, notes, and snippets.

@trevor-atlas
Created December 3, 2014 14:54
Show Gist options
  • Select an option

  • Save trevor-atlas/e6815738d856f512ee56 to your computer and use it in GitHub Desktop.

Select an option

Save trevor-atlas/e6815738d856f512ee56 to your computer and use it in GitHub Desktop.
pseudo element triangle border
.element:before {
content: '';
width: 0;
height: 0;
border-style: solid;
border-width: 0 50px 50px 0;
border-color: transparent grey transparent transparent;
position: absolute;
top: 0;
right: 0;
background-color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment