I'm having trouble getting a header centered, the coding below speaks for itself, I've tried several things to get the header centered, however it doesnt do the job, how can I alter my coding so that the header will be horizontal centered?
Quote:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
<style type="text/css">
body {background: yellow;margin:0px;}
.container { font-size:10px;width: 770px; text-align:center;margin-left:auto;margin-right:auto;}
.header {background: url(header_top.jpg) top no-repeat;height:160px;}
</style>
</head>
<body>
<div class="container">
<div class="header">
test
</div>
</div>
</body>
</html>
|