これは非常に小さな 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>
タグの後のすべてが段落ボックスの外にあります。</p>
Firefox で inspect-element を使用しましたが、中央揃えのテキストへの呼び出しの直前に、入力したことのない 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>
を任意の方法で整列するように設定でき、機能します。
そのタグ内で設定された向きと異なる場合にのみ壊れます。