Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有下一个问题。当我在 TinyMCE 编辑器中更改简码位置时,它不会在页面上更改。这是来自 TinyMCE 的字符串:
<p style="text-align: center;">[title size="1"]Title[/title]</p>
这是页面来源的一部分:
<p style="text-align: center;"></p> <h1>Title</h1>
如您所见,由于我无法理解标题不在 p 标签之间,这可能是什么原因?
H1 不能在 p 内。因为 h1 和 p 是块元素。使用 span 代替 p
<span style="text-align: center;">[title size="1"]Title[/title]</span>