html – 表高度100%内部的Div元素

前端之家收集整理的这篇文章主要介绍了html – 表高度100%内部的Div元素前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
嗨,我想要将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}    ​

DEMO

原文链接:https://www.f2er.com/html/225071.html

猜你在找的HTML相关文章