30
Ventana modal Bootstrap centrada verticalmente
Me gustaría centrar mi modal en la ventana gráfica (centro) Intenté agregar algunas propiedades css .modal { position: fixed; top:50%; left:50%; } Estoy usando este ejemplo http://jsfiddle.net/rniemeyer/Wjjnd/ Lo intenté $("#MyModal").modal('show').css( { 'margin-top': function () { return -($(this).height() / 2); }, 'margin-left': function () { return -($(this).width() / 2); } })