I am looking to style the first letter of every paragraph that comes after an H1 header by increasing the font-size to 200%.
For example:
<h1> This is a header </h1>
<p>The first 'T' in this paragraph needs to be set to 200%</p>
<ul>
<li>Random list item 1</li>
<li>Random list item 2</li>
</ul>
<p>The first 'T' in this paragraph does NOT need to be set to 200% as it doesn't follow an H1</p>
I have tried using p::first-letter {font-size: 200%;} but it selects the first letter of every paragraph instead. I have been researching and experimenting on how to target only the paragraphs following an H1 for quite some time now. Any assistance would be greatly appreciated.