version: 1.2.1
<el-table
:data="newUserData"
height="tableHeight"
border
.table-wrapper .el-table{
height: calc(100% - 60px);
Have you solved it? I'm suffering this problem as well. I want to make the page responsive rather than fixed 'px'.
@ultraN it seems that there aren't officials solution, but...
.el-table {
height: calc(100% - 136px)!important;
}
anyway, it works for me
@fliu2476 why close the issue
when use max-height by string
is also can't seeting the set
and in the source code, i do not find some code to handle the height param by string
Most helpful comment
Have you solved it? I'm suffering this problem as well. I want to make the page responsive rather than fixed 'px'.