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