5

是否可以调整网格中的行高以显示整个内容?

4

1 回答 1

2

您将不得不覆盖引导 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;
}
于 2014-11-19T19:50:35.673 回答