Looking to create a bootstrap dropdown sub-menu button that is scrollable? I came across something similar through a quick search. To make this button scrollable, I added the following class:
<ul class="dropdown-menu scrollable-dropdown">
<li></li>
</ul>
.scrollable-dropdown {
height: auto;
max-height: 150px;
overflow-x: hidden;
width: 200px;
}
However, after adding this class, the sub-menu is not being displayed.
Check out the fiddle with the issue here.