我正在使用Angular UI-Grid处理一个概念,在该概念中,我们将在左侧固定几列,并需要自定义单元格的高度。我很容易修改单元格的高度,但是发现该高度未应用于非固定单元格。有人对如何实现此目标有什么建议吗?
已更新 基于注释,我能够使用rowHeight选项将其用于固定高度的列,现在可以处理动态行高和自动换行。 T
CSS过去曾用于获取动态高度和自动换行,但这不适用于固定的列。
[ui-grid-row] {
display: table-row;
}
.ui-grid-row, .ui-grid-cell {
height: auto!important;
}
.ui-grid-cell {
float: none;
display: table-cell;
}
.ui-grid-header-cell, .ui-grid-cell-contents {
white-space: normal;
padding: 2px;
word-break: break-word;
}