Limiting Scroll Height With Max-Height Property
Limit scroll height with `max-height` or `height` properties for `.scroll-area`. Add `overflow-y: auto;` for smooth scrolling.
In order for the scroll to appear, you need to limit its height by adding height or max-height properties. .scroll-area { overflow-y: auto; max-height: 400px; } If you do not add this, your block will stretch to the entire height.