Centering a Page with CSS

by Trevor Turk

There’s a very simple way to center a web-page horizontally, using only a smidgen of CSS:

body {
margin: 0px auto;
width: 760px;
}