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 am using the following code. How to put this table in the center of the page using CSS?

    <html>
<head>
    <link rel="stylesheet" type="text/css" href="styles.css" />
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>The Main Page</title>
</head>
<body>
    <table>
            <tr>
                <td><button class="lightSquare"></button></td>
                <td><button class="darkSquare"></button></td>
                <td><button class="lightSquare"></button></td>
                <td><button class="darkSquare"></button></td>
               <td><button class="lightSquare"></button></td>
                <td><button class="darkSquare"></button></td>
               <td><button class="lightSquare"></button></td>
              <td><button class="darkSquare"></button></td>
            </tr>

    </table>
       </body>
  </html>
share|improve this question
1  
Duplicate of many other questions e.g. stackoverflow.com/questions/2281087/center-a-div-in-css – jacktheripper Feb 22 '12 at 21:03
3  
horizontally centered? vertically centered? both? – Marc B Feb 22 '12 at 21:03
Both horizontally and vertically – CodeBlue Feb 22 '12 at 21:06
1  
possible duplicate of Vertically align div (no tables) – JonH Feb 22 '12 at 21:10

2 Answers

html, body {
    width: 100%;
}
table {
    margin: 0 auto;
}

Example JSFiddle

Vertically aligning block elements is not the most trivial thing to do. Some methods below.

share|improve this answer
Beat me to it! :) – jacktheripper Feb 22 '12 at 21:00
1  
Damn people are fast on the easy answers tonight :-) – Eoin Campbell Feb 22 '12 at 21:00
For me it's morning, if that helps? – Michael Robinson Feb 22 '12 at 21:01
Hey, but this only centered it horizontally and not vertically. Also, what is margin: 0 auto? – CodeBlue Feb 22 '12 at 21:05
@CodeBlue - then see this: stackoverflow.com/questions/1909753/… – JonH Feb 22 '12 at 21:10

You can try using the following CSS:

table {
    margin: 0px auto;            
}​
share|improve this answer

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.