A Pen by Jesse Gavin on CodePen.
Created
September 20, 2013 17:22
-
-
Save jessegavin/6640853 to your computer and use it in GitHub Desktop.
A Pen by Jesse Gavin.
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
<span data-delimiter=" | ">An Item</span> | |
<span data-delimiter=" | ">'Nother One</span> | |
<span data-delimiter=" | ">More of the Same</span> | |
<span data-delimiter=" | ">Last One</span> |
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
[data-delimiter]:not(:first-child):before { | |
content: attr(data-delimiter); | |
} | |
body { | |
text-align: center; | |
padding: 50px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment