This is a normal paragraph block.
This paragraph has a drop cap. This can easily be done by clicking the ‘drop cap’ button in the block settings.
Indent the first line of a paragraph
Option #1 – CSS Class
This paragraph needs to begin with an indent. What’s the best way to do that? A special CSS class would help, but you need to determine whether ALL paragraphs need to begin with an indent, or only specific ones. The following code can be used if you want to specify a paragraph that should have an indent at the start. Note that clicking a few spaces at the beginning of a paragraph block won’t work because they will be removed upon publishing.
/* To indent the first line of a paragraph block */
.indented-first-line {
text-indent: 1em !important;
}
Option #2 – Use ‘Classic’ block instead
Using Classic. The leading spaces will not be stripped out upon publishing. This paragraph needs to begin with an indent. What’s the best way to do that? A special CSS class would help, but you need to determine whether ALL paragraphs need to begin with an indent, or only specific ones. The following code can be used if you want to specify a paragraph that should have an indent at the start.