请通过这个小提琴来看看我到目前为止所做的尝试。
<div class="outer">
<div class="inner">
<table style="background-color: red; width:100%; height:100%;">
<tr style="background-color: red; width:100%; min-height:30%;">
<td>Name</td>
</tr>
<tr style="background-color: blue; width:100%; min-height:30%;">
<td>Nirman</td>
</tr>
<tr style="background-color: blue; width:100%; min-height:30%;">
<td>Nirman</td>
</tr>
</table>
</div>
</div>
我需要显示这个表格占据 div 的整个高度,并且这个表格的行的高度应该相等以占据整个表格的空间。这意味着,表格的高度应该是 div 高度的 100%。并且每一行的高度应该是 div 高度的 30%。
知道如何实现这一目标吗?另外,我想要一个可以在大多数浏览器上运行的解决方案,至少从 IE 8 开始。
对此非常感谢任何帮助。