我想将我的模态集中在视口上(中间) 我尝试添加一些 CSS 属性
.modal { position: fixed; top:50%; left:50%; }
我正在使用这个例子http://jsfiddle.net/rniemeyer/Wjjnd/
我试过了
$("#MyModal").modal('show').css(
{
'margin-top': function () {
return -($(this).height() / 2);
},
'margin-left': function () {
return -($(this).width() / 2);
}
})