so many CSS newbies on this forum.
You can center the layout as such. Remember, CSS cascades so the child containers inherit the properties of the parent in most cases.
CSS:
Code:
body {
text-align: center;
}
Now make your next container set with the margins as auto and wa-la. The entire page will center. Comrpende? If you don't understand, look at my home page.
|