how to change the default positioning of modal in bootstrap?

后端 未结 5 1061
陌清茗
陌清茗 2021-01-31 02:28
5条回答
  •  别那么骄傲
    2021-01-31 02:46

    To change the Modal position in the viewport you can target the Modal div id, in this example this id is myModal3

        
    
    
    #myModal3 {
    top:5%;
    right:50%;
    outline: none;
    overflow:hidden;
    }
    

提交回复
热议问题