将表及其内容移动到更大单元格的顶部和底部

时间:2015-02-19 05:25:20

标签: html css

如何移动标题为" border one"和"边界二"到它们所在的单元格的顶部和底部?如果我尝试填充顶部/底部,它会在放大/缩小时弄乱结构。

这是一个小提琴:http://jsfiddle.net/0uzjyxa5/

    <table align="center" border="1" cellpadding="0" cellspacing="0" width="680" height="942" style="border-top: 1px solid white;">

    <td style="width: 288px; height:auto;">

    </td>

    <td>
        <table border="1" width="100%">
            <tr><td>border top</td></tr>
        </table>

        <table border="1" width="100%">
            <tr><td>venue info</td></tr>
        </table>

        <table border="1" width="100%">
            <tr><td>border bottom</td></tr>
        </table>
        <td style="width:17px;"></td>
    </td>
    </table>

1 个答案:

答案 0 :(得分:3)

您可以使用

对齐表格数据
table td {
   vertical-align: bottom;
}

table td {
   vertical-align: top;
}