我有一张表:
<table>
<tr>
<td>...</td>
<td><div class="stretch"></div></td>
</tr>
</table>
我需要让.stretch
符合td
的高度。目前div
的高度为0.我缺少什么?
答案 0 :(得分:6)
td必须具有设定的大小 然后你设置div的高度:100%; 或继承相同的东西 你会很高兴
答案 1 :(得分:1)
.stretch {
height: 100%;
}
答案 2 :(得分:0)
这应该有效
<table style="width: 200px; height: 200px">
<tr>
<td style="border: thin solid #FF0000; height:200px">
<div style="border: thin solid #0000FF; width:100%; height:100%;">
</div>
</td>
</tr>
</table>