JSFiddle - React, Tailwind, and code Playground
by Madmartigan
HTML
<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>
<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-indent:40px;
}