Center è tag deprecato e da evitare, probabilmente sbagli qualcosa. Puoi provare partendo da questo codice:
codice:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>titolo</title>
<style type="text/css">
body {
text-align:center; /* per vetuste versioni di ie */
}
#container {
width: 600px;
height: 300px;
margin: 0 auto;
background-color:green;
}
</style>
</head>
<body>
<div id="container"> contenuto del div</div>
</body>
</html>