30
Janela modal Bootstrap centralizada verticalmente
Gostaria de centralizar meu modal na janela de exibição (meio) Tentei adicionar algumas propriedades css .modal { position: fixed; top:50%; left:50%; } Estou usando este exemplo http://jsfiddle.net/rniemeyer/Wjjnd/ eu tentei $("#MyModal").modal('show').css( { 'margin-top': function () { return -($(this).height() / 2); }, 'margin-left': function () { return -($(this).width() / 2); } })