Created
June 5, 2019 00:14
-
-
Save corypina/31fe956c961efe5c0e3d5d5948236ebf to your computer and use it in GitHub Desktop.
CSS Snippets
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
/* Short background behind text */ | |
.element::after { | |
display: block; | |
content: ""; | |
border-top: 18px solid #COLOR; | |
border-radius: 4px; | |
margin-top: -22px; | |
margin-left: -15px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment