解决bootstrap模态框居中问题

完美解决办法:

  在bootstrap.js或bootstrap.min.js文件中找到Modal.prototype.show方法。

  在that.$element.addClass('in').attr('aria-hidden', false)代码前加入下面这段代码。

 that.$element.children().eq().css("position", "absolute").css({
"margin": "0px",
"top": function () {
return (that.$element.height() - that.$element.children().eq().height() - ) / + "px";
},
"left": function () {
return (that.$element.width() - that.$element.children().eq().width()) / + "px";
}
});

运行结果;

解决bootstrap模态框居中问题

 亲测有效,特此记录。而且此方法也能解决bootbox无法居中的问题。

  

上一篇:千万不要随意在网上下载ojdbcjar包来使用,ORA-01461错误解决


下一篇:用caffe给图像的混乱程度打分