在表TD内强制DIV全高

时间:2011-06-12 22:49:14

标签: css html html-table

我明白了:

<style>
.topdiv {
    vertical-align:top
}
.bottomdiv {
    vertical-align:bottom
}
</style>

<table border="1" cellspacing="0" cellpadding="0">
    <tr>
        <td>
            content<br/>
            content<br/>
            content<br/>
            content<br/>
            This cell holds content that is higher than the right side<br/>
            content<br/>
            content<br/>
            content<br/>
            content
        </td>
        <td>
            <div class="containerdiv">
                <div class="topdiv">
                    I want this DIV at the top of the cell
                </div>
                <div class="centerdiv">
                    I want this DIV in the middle of the cell
                </div>
                <div class="bottomdiv">
                    I want this DIV at the bottom of the cell
                </div>
            </div>
        </td>
    </tr>
</table>

我希望文本能很好地解释我的问题:)

1 个答案:

答案 0 :(得分:-1)

首先,在2011年拥有表格布局是个坏主意,更不用说混合表和div布局了!

我觉得在一个只有div的布局中这个比这个更简单。