这是一个非常小的 HTML 问题,我相信你们会很快回答。我在我的网站上发布这样的东西
<div id="content">
<p>
<hh>Header text here</hh>
Post information here, text and stuff.
</p>
<p>
<hh>Header 2 text here</hh>
Post 2 information here, text and stuff.
</p>
</div>
但是当我尝试插入一个<center>
或点亮左标签时,它会<p>
自动关闭,并且<center>
标签之后的所有内容都在段落框之外。我在Firefox中使用了inspect-element,我可以看到它以</p>
我从未输入过的a关闭,就在任何对居中文本的调用之前。
例如:
<p>
<hh>Header 2 text here</hh>
Post 2 information here, text and stuff.
<center>This text is centered</center>
</p>
呈现如下:
<p>
<hh>Header 2 text here</hh>
Post 2 information here, text and stuff.
</p>
<center>This text is centered</center>
</p>
这真的很令人沮丧,如果有人可以帮助我,那就太棒了。使用<div align-right>
也不起作用。如果有帮助,我可以将整个设置为<p>
以任何方式对齐并且它可以工作。
只有当我与该标签中的设置方向不同时,它才会中断。