Let’s say we have div in view
<div id="myDiv" class="div-with-scrollbar"> </div>
With this CSS file, you can add a scrollbar
.div-with-scrollbar
{
overflow-y: scroll;
width: 100%;
height: 500px;
}
Let’s say we have div in view
<div id="myDiv" class="div-with-scrollbar"> </div>
With this CSS file, you can add a scrollbar
.div-with-scrollbar
{
overflow-y: scroll;
width: 100%;
height: 500px;
}