Cascading Style Sheets: This is embarrasing, trying to get everything centered on the page...?
This is just plain embarrassing;
what I am trying to do, is make my layout of my whole page 700px wide. I am then trying to center those 700px in the middle of the browser. I have did it on many sites and now I cannot do it for some reason. Any ideas?
Public Comments
- In the body tag, insert text-align: center.
- To center, use css auto margins. #page { width: 700px; margin: 0 auto; } <body> <div id="page"> /* your page content */ </div> </body>
Powered by Yahoo! Answers