Skip to content

Instantly share code, notes, and snippets.

@narthur
Created December 20, 2018 16:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save narthur/fab4a235b8f15a764f84347fe7b5923d to your computer and use it in GitHub Desktop.
Save narthur/fab4a235b8f15a764f84347fe7b5923d to your computer and use it in GitHub Desktop.
[Pseudo Element Arrow] #css
.element::after {
content: "";
display: block;
width: 0;
height: 0;
border-top: 10px solid transparent;
border-left: 10px solid black;
border-bottom: 10px solid transparent;
border-right: 10px solid transparent;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment