我寫了下面的代碼。它在Mozilla和Chrome中顯示得非常好。但在Internet Explorer中,它不是中心對齊,而是顯示在左側。這裏是代碼:HTML Div中心在Internet Explorer中對齊
<html>
<head>
<title>ProgramEngine Website Registration</title>
<style type="text/css">
div#login
{
background-color:#f1f1f1;
width: 510px;
height: 1024px;
border: 1px solid grey;
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<div id="login"></div>
</body>
</html>
所以AnyBody建議我什麼是問題和如何克服它。
你指的是哪個版本的Internet Explorer?這對我來說在IE7 +中效果很好,而且我看不到任何明顯的問題,您的代碼可能會導致 – Sean
您正在測試哪個版本的IE?它似乎在IE7 +中工作得很好。 – BenM
其Internet Explorer 8 – user1936711