Simple Paragraph Indent

I have a pretty simple question.
What would be the best way for me to add simple, left aligned, first line indented paragraphs of text to a page, a card, etc . . . .?

Thank You.

I used the css “text-indent” property on a site where I have snippets of old newspaper articles. This will indent the first line the specified number of pixels. E.g.

p {
text-indent:24px;
}

will indent the first line of all paragraphs. In my case I isolated the required paragraphs in a css wrapper stack for selective control (home brewed but I think there are ones available out there)

There may be alternatives but this works well for what I am using it for.

cheers

1 Like

Thank you for the suggestion.