Modal plugin of Bootstrap 2 is not displayed by the center

后端 未结 5 620
没有蜡笔的小新
没有蜡笔的小新 2021-02-04 11:10

I use bootstrap modal plugin. But modal dialog is not shown in center. Why? my mistake?

http://dl.dropbox.com/u/573972/stackoverflow/bootstrap/modal.html



        
5条回答
  •  不知归路
    2021-02-04 12:15

    I found this workarround to fix this issue:

    $('#YourModal').modal().css(
                {
                    'margin-top': function () {
                        return -($(this).height() / 2);
                    }
                })
    

    Source: https://github.com/twitter/bootstrap/issues/374

提交回复
热议问题