To make Div vertical scrollbar show with CSS, we set the overflow-y
attribute.
For instance, we write
<div style="width: 200px; height: 100px; overflow-y: scroll">test</div>
to add overflow-y: scroll
to always show the vertical scrollbar on the div.