Is there a way to recreate the menu effect similar to using CSS fonts and drop caps for each word?
I'm aware of the CSS code:
p.introduction:first-letter {
font-size : 300%;
}
that enlarges the first character of the first word, but I want this effect for every word. Is there a CSS(3) solution for this, or would JavaScript be the better option? I am already using Moo on the page so that could work as well.
I prefer not to add additional HTML to my links to achieve this effect.
Thank you!