JSFiddle - React, Tailwind, and code Playground

by Ivin Raj S

HTML

<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>

CSS

h1+p::first-letter {
    font-size: 200%;
    color: #8A2BE2;
}