gpt4 book ai didi

html - CKEditor v4 : Indent after heading

转载 作者:太空宇宙 更新时间:2023-11-03 17:37:12 24 4
gpt4 key购买 nike

是否可以在标题标签 (h1-h6) 后缩进?我尝试使用 CSS 和 CKEditor 数据处理器。

我需要以下工作流程:用户:

  1. 写一个标题并设置为h1
  2. 在h1标题后输入一些文字

输出:

<h1>Heading h1</h1>
<p style="margin-left: 40px;">Content</p>

在 CSS 中尝试:

p {
text-indent: 40px;
/* or -> margin-left: 40px; */
}

然后它被设置为所有 p-tags

这可以用 CKEditor 实现还是应该用 CSS 解决?

最佳答案

在您的 contents.css 中试试这个:

h1 + p {
text-indent: 40px;
}

并查看:What does the "+" (plus sign) CSS selector mean?

关于html - CKEditor v4 : Indent after heading,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29651879/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com