bootstrap-modal.js 居中问题

上下居中

引用 bootstrap-modalmanager.js
 
左右居中
修改 bootstrap-modal.js 中 this.$element.css('margin-left', '');   改为  this.$element.css('margin-left', 0 - this.$element.width() / 2);
 
去掉 bootstrap-modal-bs3patch.css  .model 中的  500px;
原文地址:https://www.cnblogs.com/ideacore/p/6288757.html