Is it possible to make a bootstrap 4 dropdown button function properly inside of a table with a fixed height for the tbody section? I am facing an issue where the button group menu does not pop out when the height is constrained.
#table1 tbody {overflow-y:scroll; display:block;height:120px;}
<td>
<div class="dropdown">
<button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown">
Dropdown button
</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="#">Link 1</a>
<a class="dropdown-item" href="#">Link 2</a>
<a class="dropdown-item" href="#">Link 3</a>
<a class="dropdown-item" href="#">Link 4</a>
<a class="dropdown-item" href="#">Link 5</a>
<a class="dropdown-item" href="#">Link 6</a>
</div>
</div>
</div>
</td>
In this image, you can see the menu expanding outside the table without a fixed height: https://i.sstatic.net/HBJp8.png
Contrastingly, in this image, the menu expands within the table with the fixed height for the tbody: https://i.sstatic.net/TrAx8.png
For a visual example, refer to this JSFiddle link.