<center>
タグを削除するにはどうすればよいですか?
すべてのContentPlaceHolderをMasterPageに設定<center>
したので、すべての本文のaspxページがデフォルトの中央になります。masterPageのタグを削除せずに、その効果を削除/無効にするにはどうすればよい<center>
ですか?
The tag is not supported in HTML5, and is being depreciated. You should look for another solution to your problem.
Instead of the center tag you could use a div tag with a class that has the attribute 'Text-align:center'. Then in the children tags state 'Text-align:Left' or similar.
center {
float: left; }
ニーズに合わせて調整するだけです(他の回答で述べたように、margin: auto など)。
最善の方法は、これをカスタム CSS で宣言することです (SharePoint 2007/2010 について話していると仮定します)。
center
あなたの問題は、タグが非推奨であり、まったく使用すべきでない理由の良い例です。HTML が何かの見た目を決定するべきではありません。
標準への準拠を気にしない場合は、center
タグにスタイルを追加して左にフロートさせることができます。ただし、それに応じたスタイルに置き換えることをお勧めし div
ます。