Is it possible to indent after a heading tag (h1-h6)? I tried it with CSS and the CKEditor dataprocessor.
I need the following work-flow: User:
- Write a heading and set it to h1
- Enter some text after the h1 heading
Output:
<h1>Heading h1</h1>
<p style="margin-left: 40px;">Content</p>
Attempt in CSS:
p {
text-indent: 40px;
/* or -> margin-left: 40px; */
}
But then it is set for all p-tags
Is this possible with CKEditor or should I solve this with CSS?