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?<
Here you go:
p:first-line { text-indent:30px; }
Didn't see a clear answer for a CSS newbie, so here's an easy one.
Use the text-indent property.
p { text-indent: 30px; }
jsFiddle.