Bootstrap dropdown clipped by overflow:hidden container, how to change the container?

后端 未结 16 1778
孤城傲影
孤城傲影 2020-12-02 18:07

Using bootstrap, I have a dropdown menu(s) inside a div with overflow:hidden, which is needed to be like this. This caused the dro

16条回答
  •  Happy的楠姐
    2020-12-02 19:06

    You can also try this one by replacing yourDivId by the id of your div.

    $('.dropdown').on('show.bs.dropdown', function() {
        $('#yourDivId').css('overflow-x', 'visible');
    });
    
    $('.dropdown').on('hidden.bs.dropdown', function() {
        $('#yourDivId').css('overflow-x', 'hidden');
    });
    

提交回复
热议问题