Angular user interface adjusts row height based on content

Is it possible to adjust the height of the line in the grid to display all the content?

+5
source share
1 answer

You will have to override 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; } 
+2
source

Source: https://habr.com/ru/post/1207245/


All Articles