我需要一个高度是其父级剩余高度的 div。
CSS:
.h_100
{
height:100%
}
body, html
{
margin:0;
padding:0;
height:100%;
}
.table
{
width: 100%;
display: table;
}
.table_row
{
width: 100%;
display: table-row;
}
但它似乎在 IE 中有效
有什么建议可以解决我的问题吗?