Menu Close

How to make a div vertically scrollable using CSS?

To make a div vertically scrollable using CSS, we set the overflow-y property.

For instance, we write

<div style="overflow-y: scroll; height: 400px">...</div>

to make the div scrollable vertically with overflow-y: scroll;.

We’ve to set the div’s height for overflow-y to work.

Posted in CSS