display bootstrap popovers outside divs with overflow:hidden

跟風遠走 提交于 2019-12-02 19:16:41

Ok, so I figured this one out.

I changed:

$('.popover-with-html').popover({ html : true, });

to:

$('.popover-with-html').popover({ html : true, container: 'body'}); 

and it's working.

container: 'body'

was the key, I hope this helps someone.

Thanks

Steph

Add following in your CSS. Override overflow property of slider.

.carousel-inner{
    overflow:visible;
 }

I hope this helps someone.

Got it from https://github.com/twbs/bootstrap/issues/6091

user3688106

I resolved it by overwriting carousel-inner in my own css. Increase height to show the drop down

.carousel-inner {height: 350px; width: 100%; min-width: 650px;}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!