グリッドの行の高さを調整してコンテンツ全体を表示することはできますか?
質問する
5774 次
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 に答える