Center your site
Back in the day when I was learning CSS, I was banging my head against the wall on how to get my page centered. When I would go to larger resolution the page was off center, and then in Firefox and IE…. let’s not go there. Just a big headache. Finally I learned to center a page.
The CSS would be:
body {
text-align: center;
}
#page {
margin-left: auto;
margin-right: auto;
}
There you have it. If you do not know the rest please search for the nearest HTML tutorial. Have a great Summer!
