First-line indent slider option for paragraphs #34688
Labels
[Block] Paragraph
Affects the Paragraph Block
Needs Decision
Needs a decision to be actionable or relevant
[Type] Enhancement
A suggestion for improvement.
What
A slider option in the paragraph's block menu to enable first-line-only indenting (like a tab in a classic document)
Why
I've run across a few people lately who've requested this. Some people like the classic formatting look (like a book). Others may be used to writing in Word docs (where a tab or margin adjustment to top-line indents are readily available).
In any case, there should be an easy way to toggle this for non-technical users. It's a very "front-facing, writing heavy" feature that people are used to having readily available. Making it a somewhat technical workaround with CSS and classes only enforces that "You can do anything with WordPress, as long as you ave a technical background and can write CSS." This aims to break that mold.
How
CURRENTLY
You can achieve a top-line-only indent a couple ways.
" or " 
" or " 
" which are rendered as different levels of spacing.<p>  This is the indented first line only.</p>
<p style="text-indent: 50px;">
to your intended paragraph. OR adding in your Custom CSS sectionp { text-indent: 1em; }
(which will indent ALL paragraph blocks across your site - so, easy to implement and update to a different value, but a pain to have it apply to all paragraph blocks everywhere). Alternative is to create a custom class like "book-styling-paragraph" and then label all paragraphs you want indented like this with that class name.References
FUTURE
A slider in the block menu of the paragraph block you can easily toggle a first-line-only indent.
Design considerations
References
The text was updated successfully, but these errors were encountered: