嗨,我正在尝试将我的主要内容部分居中,即灰色部分。它以 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>