I\'m using Bootstrap for a section of my website. I mix accordion with a dropdown button. The problem comes when the button is on the bottom, the drop-down is hidden since the .
I know I'm seven months late to this party, but maybe someone else will find this helpful.
The cleanest solution I've found to this problem is to use the Bootstrap event handlers on the accordion. It's still kind of kludgy, but IMO it's less hackish than the accepted answer by ScottS (which I think would be better if not for the behavior in Chrome).
$(document).ready(function() {
$('.accordion-body').on('shown', function() {
$(this).css('overflow', 'visible');
});
$('.accordion-body').on('hide', function() {
$(this).css('overflow', 'hidden');
});
});