Results 1 to 3 of 3

Thread: Vertical centering

  1. #1
    Join Date
    Nov 2007
    Posts
    151
    Thanks
    67
    Thanked 0 Times in 0 Posts

    Default Vertical centering

    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.

  2. #2
    Join Date
    Mar 2008
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    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:

    Code:
    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.

  3. #3
    Join Date
    May 2007
    Location
    Boston,ma
    Posts
    2,127
    Thanks
    173
    Thanked 207 Times in 205 Posts

    Default

    Code:
    #page {
    margin:auto;
    text-align:center;
    }
    Code:
    <div id="page">
    Look i'm in the center? Neat.
    </div>

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •