如何使用CSS垂直集中Bootstrap V4模式?

前端之家收集整理的这篇文章主要介绍了如何使用CSS垂直集中Bootstrap V4模式?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

参见英文答案 > How to vertically align Bootstrap v4 modal dialogs                                    6个
如何使用CSS集中Bootstrap V4 modal

最佳答案
您可以通过覆盖.modal对话框的位置来垂直居中模式.

.modal.show .modal-dialog {
    -webkit-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    transform: translate(0,-50%);
    top: 50%;
    margin: 0 auto;
}

http://www.codeply.com/go/14Ki1kyTgo

更新2018年

从Bootstrap 4 Beta 3开始,有一个新的以模态对话为中心的类可以用来代替上面描述的自定义方法.

https://www.codeply.com/go/lpOtIFoN6E(Beta 3)

原文链接:https://www.f2er.com/css/427393.html

猜你在找的CSS相关文章