When you want to style only
the first line of a paragraph
or the first line of each paragraph
differently, you can use the
::first-line
pseudo-element:
Similarly, when you want
to style only the first letter
of a paragraph or first letter of
each paragraph differently, you can
use the ::first-letter
pseudo-element:
Also, if you wish to select the
first letter of only the first
paragraph, you can combine the
:first-child
pseudo-class with
:first-letter
like this:
Try using this in the editor above.