Created
June 8, 2020 08:16
-
-
Save b-aleksei/240da212dc6f223d8ab043b37ad6e46d to your computer and use it in GitHub Desktop.
cssTriangle
This file contains hidden or 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
::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