My goal is to have the second paragraph following a h1 element display a dropcap, with the first being reserved for the author and date.
Although I've tried using different CSS combinations like h1 + p::first-letter {}
, it only affects the first paragraph after the heading.
Attempts such as h1 + p + p::first-letter {}
or
h1 + p:nth-child(2)::first-letter {}
haven't produced the desired result. Is it not possible to combine CSS selectors in this manner?
Another question on this topic does not provide a solution applicable to my situation, so it's not a duplicate case.