30
ブートストラップモーダルウィンドウを垂直方向に中央揃え
モーダルをビューポートの中央に配置したい(中央)私はいくつかの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); } })