How can I change the default width of a Twitter Bootstrap modal box?

后端 未结 30 2635
醉酒成梦
醉酒成梦 2020-11-27 08:38

I tried the following:

   
30条回答
  •  粉色の甜心
    2020-11-27 09:17

    Bootstrap 3: In order to maintain responsive features for small and extra small devices I did the following:

    @media (min-width: 768px) {
    .modal-dialog-wide
    { width: 750px;/* your width */ }
    }
    

提交回复
热议问题