angularjs – Angular UI Grid根据内容调整行高

前端之家收集整理的这篇文章主要介绍了angularjs – Angular UI Grid根据内容调整行高前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以调整网格中的行高以显示整个内容

解决方法

您将不得不重写bootstrap 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;
}

猜你在找的Angularjs相关文章