最近在某个项目用使用了bootstrap,并且有部分链接使用了打开Modal对话框的方式。
可是最后使用中发现,每打开一次关闭之后,对话框背后的框架就整体被左移了。
谷歌了下,居然是bootstrap 的bug :
ref: https://github.com/twbs/bootstrap/issues/9855
ref: https://github.com/twbs/bootstrap/issues/10063
最后针对自己的页面加了个css补丁,完事。
body, .navbar-inverse{ padding-right: 0px !important; }
特此记录。