【发布时间】:2014-11-20 03:50:35
【问题描述】:
是否可以调整网格中的行高以显示全部内容?
【问题讨论】:
是否可以调整网格中的行高以显示全部内容?
【问题讨论】:
您必须覆盖引导 css
.ngCell {
display : table-cell;
height: auto !important;
overflow:visible;
position: static;
}
.ngRow {
display : table-row;
height: auto !important;
position: static;
}
.ngCellText{
height: auto !important;
white-space: normal;
overflow:visible;
}
【讨论】: