Log in

View Full Version : Vertical centering



d-machine
10-27-2009, 05:38 PM
Hi,

Is it possible to center a page with 100% width vertically?

Thanks!

crazykid
10-27-2009, 08:33 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:


body {

padding-top: 5px; //put whatever amount of px you want here
padding-bottom: 5px; //put whatever amount of px you want here

}

That should be how to do it...correct me if I'm wrong.

bluewalrus
10-27-2009, 09:02 PM
#page {
margin:auto;
text-align:center;
}


<div id="page">
Look i'm in the center? Neat.
</div>