Set max height to a Div and make the content vertically scrollable

Sure, you achieve this with some inline style arguments, something like html.Div(..., style={"maxHeight": "400px", "overflow": "scroll"}) should do the trick.

2 Likes