RSS Feed

Center align site using CSS

Posted on Wednesday, June 17, 2009 in code bits

HTML bit

<body>
<div id="wrapper">
**Rest of site goes here**
</div>
</body>

CSS bit

body {
text-align: center;
}

#container {
margin: 0 auto;
width: ***px;
}

Be the first to comment.

Leave a Reply