how to change the default positioning of modal in bootstrap?

后端 未结 5 1064
陌清茗
陌清茗 2021-01-31 02:28
5条回答
  •  日久生厌
    2021-01-31 02:47

    I get a better result setting this class:

    .modal-dialog {
      position: absolute;
      top: 50px;
      right: 100px;
      bottom: 0;
      left: 0;
      z-index: 10040;
      overflow: auto;
      overflow-y: auto;
    }
    

    With bootstrap 3.3.7.

    (all credits to msnfreaky for the idea...)

提交回复
热议问题