内部元素的垂直对齐

时间:2010-09-08 07:17:31

标签: html css

我在<td><div>中有两个元素和一些文字。我想将<div><td>中间的{{1}}对齐,然后将文字对齐?

编辑:应该是垂直顶部对齐而不是div内的文本。

3 个答案:

答案 0 :(得分:1)

试试这个:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
    <title></title>
    <style type="text/css">

        html,body,h1,h2,h3,h4,h5,p,ul,li,form,button { margin:0; padding:0 }
        body { font:normal 62.5% tahoma }

        .my-table  { height:300px }
        .my-cell { position:relative; border:1px solid green }
        .my-div { position:absolute; top:0; left:0; border:1px solid red }

    </style>
</head>
<body>

    <table class="my-table">
        <tr>
            <td class="my-cell" align="center">

                <div class="my-div">
                    I'm aligned to the top
                </div>

                This text is vertically centered.

            </td>
        </tr>
    </table>

</body>
</html>

答案 1 :(得分:0)

喜欢这个吗?

<html>
<body>
    <table width="100%" height="100%" border="1">
        <tr>
            <td><div style="text-align: center;">some text</div></td>
        </tr>
    </table>
</body>
</html>

...或者

<html>
<body>
    <table width="100%" height="100%" border="1">
        <tr>
            <td align="center"><div style="text-align: left;">div text</div>some text</td>
        </tr>
    </table>
</body>
</html>

请记住设置身高,以便看到垂直居中

答案 2 :(得分:0)

默认情况下,表格中的任何文字都是垂直对齐的,不知道为什么你需要div。很难让内容在div中垂直对齐