30
Centratura verticale della finestra modale di Bootstrap
Vorrei centrare il mio modale sul viewport (al centro) Ho provato ad aggiungere alcune proprietà CSS .modal { position: fixed; top:50%; left:50%; } Sto usando questo esempio http://jsfiddle.net/rniemeyer/Wjjnd/ Provai $("#MyModal").modal('show').css( { 'margin-top': function () { return -($(this).height() / 2); }, 'margin-left': function () { return -($(this).width() / 2); } })