Learn to center the content, or other objects of your pages with CSS. This is a useful tool for creating succesful, and well designed web-pages.
Try it out
Create a new .css file called whatever.css. Alright, now input the following lines into your new css document.
CODE
#wrapper {
margin: 0 auto;
width: 800px;
}
margin: 0 auto;
width: 800px;
}
Alright. Now that was fairly simple. The important part is the 'margin' property. The property is used to define where something is located from the sides of the screen, or from the insides of a container. By using the value 'auto' our page will automatically center itself across the screen. (Note: in this case, the id #wrapper, must contain all the content you wish to center on your page.)
Congratualations, you have just learned to center your pages with CSS. This is a very useful piece of knowledge to have, as it drastically improves the look of fixed width layouts.

