overflow bootstrap 4 code example
Example 1: bootstrap overflow hidden
<div class="overflow-auto">...</div>
<div class="overflow-hidden">...</div>
Example 2: make a container scrollable bootstrap
.anyClass {
height:150px;
overflow-y: scroll;
}