how to change the default positioning of modal in bootstrap?

后端 未结 5 1062
陌清茗
陌清茗 2021-01-31 02:28
5条回答
  •  深忆病人
    2021-01-31 02:57

    Add the following css to your html and try changing the top, right, bottom, left values.

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

提交回复
热议问题