Solution 1 :

I talked with bootstrap team and they gave me this solution

Add this property in css: transform: translate3d(0px, 0px, 0px);

Problem :

In my case, I have used bootstrap dropdown multi-select inside td where I have also use table responsive class just because of it the dropdown not showing properly. responsive “overflow: hidden” property is hiding that dropdown. Please check below screenshot.

Responsive "overflow: hidden" property is hiding that dropdown

Comments

Comment posted by Daemon Beast

Please edit into the question the code you have tried.

Comment posted by jsfiddle.net/kawal/bLv3scyn/5

Try to add

Comment posted by Savaj Kamlesh

Yes, it’s working I have added this property over the table responsive and set dropdown position to fixed. Thanks, Dhaval

By