I'm attempting to style the first letter of each word in a paragraph using CSS
and was looking to incorporate some animation with greensock. However, the actual requirement is to style the first letter of each word, not just the first letter of the paragraph.
Any suggestions or ideas on how to achieve this?
p{
font-size:150%;
color:#000000;
}
p::first-letter {
font-size: 200%;
color: #ff0000;
}
<p>Hello This Is The Title</p>
UPDATE I attempted the following approach (adding span tags and targeting the first element of each span), but it did not work:
p span:nth-child(1)::first-letter {
font-size: 200%;
color: #ff0000;
}