Jump to content

Recommended Posts

Posted

I'm working on a new site and need to center a table on the page both vertically and horizontally. I know how to do horizontally, but I'm at a lose on how to do it vertically.

 

I've scoured Google and found no answers. Anyone here have an idea?

Posted

You can center anything vertically if you give it a fixed height. Try this:

 

The CSS

 

table {

width: 700px; height: 400px;

position: absolute; top 50%;

margin: -200px auto 0;

}

 

Does that do it?

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...