Why does the code below not cause the <table> to be vertically-aligned in the middle of the <div>?

<div style="width: 850px; height: 470px;vertical-align: middle;" align="center">
        <table style="padding-left: 20px; width: 700px; border: 10px groove #0033CC; background-color: #F9F9F9;">
            <tr>
                <td>
                    &nbsp;
                </td>
                <td>
                    &nbsp;
                </td>
                <td>
                    &nbsp;
                </td>
            </tr>            <tr>
                <td>
                    &nbsp;
                </td>
                <td>
                    &nbsp;
                </td>
                <td>
                    &nbsp;
                </td>
            </tr>
            <tr>
                <td>
                    &nbsp;
                </td>
                <td>
                    &nbsp;
                </td>
                <td>
                    &nbsp;
                </td>
            </tr>
        </table>
    </div>

I want the <table> in the middle of the <div>, but it is at the top! How can I fix this?

Thanks for your future advice.

link|improve this question

W3Schools is a very useful resource for this sort of thing. – Jim Fell Nov 1 '10 at 16:40
feedback

2 Answers

up vote 1 down vote accepted

Outside of table cells, vertical-align sets the vertical alignment of text within a line, rather than the vertical alignment of entire elements like your table.

However, if you set display: table-cell; on your <div>, that seems to achieve the effect you want.

I’m not sure how many browsers support this though. I’ve checked in Chrome 6, Firefox 2 and Opera 10.5, and they’re fine with it. Internet Explorer could be a different matter.

link|improve this answer
thanks 4 ur answer / i test it / but when i used display: table-cell; the width css did not work perfectly / any idea? – LostLord Oct 31 '10 at 20:01
@LostLord: “the width css did not work perfectly” — could you describe how it didn’t work? – Paul D. Waite Oct 31 '10 at 21:31
hi dear friend / it seems there is no width set and width of that div is 4-5px... – LostLord Nov 1 '10 at 10:27
@LostLord: really? The <div> still seems to have the correct width on my test page: pauldwaite.co.uk/test-pages/4064677 Which browser are you testing in? – Paul D. Waite Nov 1 '10 at 12:15
feedback

Try this:

<body style="vertical-align:middle">
<table style="display:inline-block">
<!-- your stuff -->
</table>
</body>

table is a block element. To get it to vertically align, I think it needs to be displayed as inline. inline-block will often give you the best of both worlds in situations like these. Cheers!

link|improve this answer
Aren’t your examples what he’s already doing? – Paul D. Waite Nov 1 '10 at 17:17
@Paul: My bad; I misread his question. I've updated my answer accordingly. – Jim Fell Nov 1 '10 at 17:44
hi - thanks for your answers / display:inline-block not worked... – LostLord Nov 1 '10 at 22:28
I think with display: block, you’d want vertical-align: middle on the <table>, not the <div>. – Paul D. Waite Nov 2 '10 at 8:45
feedback

Your Answer

 
or
required, but never shown

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