Skip to content

Instantly share code, notes, and snippets.

@b-aleksei
Created June 8, 2020 08:16
Show Gist options
  • Save b-aleksei/240da212dc6f223d8ab043b37ad6e46d to your computer and use it in GitHub Desktop.
Save b-aleksei/240da212dc6f223d8ab043b37ad6e46d to your computer and use it in GitHub Desktop.
cssTriangle
::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-top: none;
border-bottom: 15px solid red;
border-left: 7px solid transparent;
border-right: 7px solid transparent;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment