嗨,我想要将table height设置为其父div,而div中没有define height.我的代码不工作我不知道我失踪了小提琴
link
<div style="overflow:hidden"> <div style="float:left">a<br />b</div> <table cellpadding="0" cellspacing="0" height="100%" style="border:solid 1px #000000"> <tr> <td valign="middle">c</td></tr> </table> </div>
解决方法
不分配高度值到div不可能.
加这个
body,html{height:100%} div{height:100%} table{background:green; width:450px}