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 に答える