I've been struggling to figure out how to set a max-height for a tr or td element within a Kendo grid. Is it possible to set the height to 100% and restrict the max-height to 200px? The grid itself is scrollable with a height of 500px, so the scrolling should be contained within the grid.
I attempted the following:
div.k-grid-content tr td{
max-height: 200px;
}
or
div.k-grid-content tr {
max-height: 200px;
}
<div id="grid"></div>