30
Centrage vertical de la fenêtre modale Bootstrap
Je voudrais centrer mon modal sur la fenêtre (au milieu) J'ai essayé d'ajouter quelques propriétés css .modal { position: fixed; top:50%; left:50%; } J'utilise cet exemple http://jsfiddle.net/rniemeyer/Wjjnd/ j'ai essayé $("#MyModal").modal('show').css( { 'margin-top': function () { return -($(this).height() / 2); }, 'margin-left': function () { return -($(this).width() / 2); } })