I am trying to create the first letter of a paragraph using CSS
, and wanted to add some animation using greensock. But in fact, the requirement is to stylize every word of the first letter, not only the paragraph of the first letter.
What suggestion / ideas about this?
p{
font-size:150%;
color:#000000;
}
p::first-letter {
font-size: 200%;
color: #ff0000;
}
<p>Hello This Is The Title</p>
Run codeHide resultUPDATE I tried to process the following method (adding a span tag and targeting the first element of each range), but it does not work:
p span:nth-child(1)::first-letter {
font-size: 200%;
color: #ff0000;
}
source
share