Created
December 20, 2018 16:26
-
-
Save narthur/fab4a235b8f15a764f84347fe7b5923d to your computer and use it in GitHub Desktop.
[Pseudo Element Arrow] #css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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