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?
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:
Didn't see a clear answer for a CSS newbie, so here's an easy one.
I was also having a problem getting the first line of a paragraph (only the first line) to indent and was trying the following code:
This did not work. So, I created a class in my CSS and used it in my html as follows:
in CSS:
in html:
This worked like a charm. I still don't know why the first code example did not work and I did make sure that the text was not aligned.