html层级格式
<div>
<table>
<tr>
<td>
123
<td>
</tr>
.... //一百个tr
</table>
</div>
css样式:
div{
height:500px;
}
table{
height:100%;
overflow:hidden
}
怎么让table元素继承父级元素的高 (不通过改变display属性)
div 加 overflow