1

当宽度较大时,例如 900 像素,弹出窗口不会显示在屏幕中心。

大家可以看这里的例子,用firebug编辑弹窗的宽度,之后会报错。

http://www.w3resource.com/twitter-bootstrap/modal-example.html#

4

1 回答 1

0

80% 宽度,居中,响应式,仅使用 CSS:

#modal {    
    width: 80%;
    margin-left: -40%;
    left: 50%;
}

https://github.com/twitter/bootstrap/issues/675

于 2013-07-20T11:20:02.107 回答