Why wont this center. Iused text-align: center; in the body and text-align: left in the wrapper along with margin: 0 auto; and it does not center. Can someone tell me what I am doing wrong. Thanks howard
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"<html>
<head>
<title>Untitled Document</title>
<style>
body
{
text-align: center;}
#wrapper{width: 800px; text-align: left;
margin:0 auto;}
#content{width: 500px; height: 400px;border: 10px solid black;position:absolute; top:0; left:10px;}
#menu {width: 200px;background-color:red;position:absolute; top:0;left:510px;}
</style>
</head>
<body>
<div id="wrapper">
<div id="content">test</div>
<div id="menu">menu</div>
</div>
</body>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"<html>
<head>
<title>Untitled Document</title>
<style>
body
{
text-align: center;}
#wrapper{width: 800px; text-align: left;
margin:0 auto;}
#content{width: 500px; height: 400px;border: 10px solid black;position:absolute; top:0; left:10px;}
#menu {width: 200px;background-color:red;position:absolute; top:0;left:510px;}
</style>
</head>
<body>
<div id="wrapper">
<div id="content">test</div>
<div id="menu">menu</div>
</div>
</body>
</html>