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 want to position a DIV (or a TABLE) element at the center of screen irrespective of screen size. In other words, the space left on 'top' and 'bottom' should be equal and space left on 'right' and 'left' sides should be equal. How to do it?

Note: I prefer a complete CSS solution, but if is not possible without Javascript then using Javascript is also fine.

I am trying the following but it is not working:

 <body>
  <div style="top:0px; border:1px solid red;">
  <table border="1" align="center">
   <tr height="100%">
    <td height="100%" width="100%" valign="middle" align="center">
      We are launching soon!
    </td>
   </tr>
  </table>
  </div>
 </body>

Note: It is either way fine if the DIV element (or TABLE) scrolls with the website or not. Just want it to be at center when page loads.

share|improve this question
possible duplicate of How to align a <div> to the middle of the page – Purmou Mar 25 '12 at 17:10
Hi Purmou, the question you mentioned if for positioning at the middle of the page, i.e. left and right side equal space -- not the top and bottom space equal! – iSumitG Mar 25 '12 at 17:15
possible duplicate of What's The Best Way of Centering a Div Vertically with CSS – outis Mar 26 '12 at 0:23

2 Answers

up vote 8 down vote accepted

The easy way, if you have a fixed width and height:

#divElement{
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    width: 100px;
    height: 100px;
}​

Please don't use inline styles! Here is a working example http://jsfiddle.net/S5bKq/.

share|improve this answer

If you have a fixed div just absolute position it at 50% from the top and 50% left and negative margin top and left of half the height and width respectively. Adjust to your needs:

div {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 300px;
    margin-left: -250px;
    margin-top: -150px;
}
share|improve this answer
Works perfect for me thankyou. – 422 May 14 at 3:58

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.