好像在
github上已经多次询问过这个问题,但我没有遇到任何解决方案:
https://github.com/twitter/bootstrap/issues/1399
https://github.com/twitter/bootstrap/issues/1399
如何在小屏幕上正确垂直对齐模态?
解决方法
编辑:从Bootstrap 2.0.2开始,这不再是一个问题.基本上,bootstrap现在实现了下面提出的解决方案,我将在这里留待参考.
一般来说,在小屏幕上,模态会填充你的大部分窗口,因此相对于触发模态的按钮的定位并没有多大意义.我通常做的只是覆盖手机的模态位置:
@media (max-width: 767px) { .modal { top: 20px; // negative left margin to position horizontally. margin: 0 0 0 -280px; // already in modals.less,just copied for clarification: left: 50%; position: fixed; } }
(这是很少的,纯CSS解决方案看起来很相似).