Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a background div with set dimensions, which includes a table element.

I'm looking for a way to position the table in the middle-left of the div. Left is easy, middle I can't get to work. This is what I have:

HTML

 <div id="background">
      <table>
        //... stuff 
      </table>
 </div>

CSS:

 #background {
      height: 1000px;
      width: 1000px;
      text-align: left;
      }

Can someone tell me how to vertical align the table? Thanks for help!

share|improve this question
What have you tried?, What have you Googled? There are thousands of tutorials online with the answer you're looking for. – Ryan Mar 7 '12 at 13:19
just fixed it with position relative/position absolute... never mind vertical align. – frequent Mar 7 '12 at 13:28

2 Answers

up vote 2 down vote accepted

Div's don't allow vertical aligns typically. The only option would be to make it act like a table cell or do something like margin/padding that will look like your table is vertically aligned.

share|improve this answer
correct, just found this: stackoverflow.com/questions/4064677/… – frequent Mar 7 '12 at 13:19

Just position: relative the table within the div and give it top: 50% and left: 50%.

You can take out the left and just use top

http://jsfiddle.net/EZk3T/1/

share|improve this answer
that's what I did. Thanks! – frequent Mar 7 '12 at 13:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.