JSFiddle - React, Tailwind, and code Playground

HTML

<p>Hello</p>
<p>,

I have several paragraphs that I would like to indent, although only the first lines of these paragraphs.

How would I target just the first lines using CSS or HTML?

    Thanks!</p>

<p>Hello,

I have several paragraphs that I would like to indent, although only the first lines of these paragraphs.

How would I target just the first lines using CSS or HTML?

    Thanks!</p>

<p>Hello,

I have several paragraphs that I would like to indent, although only the first lines of these paragraphs.

How would I target just the first lines using CSS or HTML?

    Thanks!</p>

CSS

p:first-line{

    color:red;
    
    
}

p {
    text-align:40px;
}