Hi,
Is it possible to center a page with 100% width vertically?
Thanks!
Hi,
Is it possible to center a page with 100% width vertically?
Thanks!
Last edited by d-machine; 10-27-2009 at 07:52 PM.
Do you mean you want your page to be centered so it is in between the top and bottom of the page? If so you would need to put padding like this to the CSS:
That should be how to do it...correct me if I'm wrong.Code:body { padding-top: 5px; //put whatever amount of px you want here padding-bottom: 5px; //put whatever amount of px you want here }
Code:#page { margin:auto; text-align:center; }Code:<div id="page"> Look i'm in the center? Neat. </div>
Bookmarks