Created
October 21, 2013 20:08
-
-
Save LibertysYarn/7090091 to your computer and use it in GitHub Desktop.
End Article with an Ivy Leaf - CSS-Tricks
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
p:last-child:after { | |
content: "\2766"; /* Here comes the ivy leaf */ | |
font-size: 150%; /* Makes the leaf larger than the normal text */ | |
padding-left: 10px; /* Leaf won't clash with the last letter of the text */ | |
float: right; /* Horizontal position is set to the right edge of the column */ | |
position: relative; /* This is just an homage to Albert Einstein */ | |
top: 15px /*Vertical distance from the last line of text */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment