I want to make a div that is always the height of the screen, even if it has more content in it. The div shows a list of , and if there are more than can be contained in the screen there will be a scrollbar on the side of the div.
<div class = "Row">
<div class ="col-sm-2">
<ul>
<li>
<h1>record1</h1>
</li>
<li>
<h1>record2</h1>
</li>
</ul>
</div>
</div>
I've searched online but only found answers that have nothing to do with my issue, like scrollable modals and other scroll issues. Please explain your answer fully with steps and full code.