3

こんにちは私は灰色の部分である私のメインコンテンツ部分を中央に配置しようとしています。これはMozillaを中心にしていますが、IEは中心ではありません(IEがすべてのコンピューターから削除されることを望みます)。動作していないのはmargin-left:autoです。誰かがこの問題を解決するのを手伝ってもらえますか?

<html>
<head>

</head>

<body style="background-color:black;">
<div style="background-color:gray; margin-left:auto; margin-right:auto; width:1000px; height:1000px; padding-top:0px; margin-top:-10px;">
<p style="margin-left:auto; margin-right:auto; width:500px; background-color:red; text-align:center">This is a test.</p>
</div>

</body>

</html>
4

1 に答える 1

4

ページの最初の行にDoctypeを追加する必要があります。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

于 2012-08-30T14:22:16.020 に答える