How can I change the width of a Bootstrap 3 modal in IE8?

前端 未结 6 1136
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-29 19:47

I have to support IE8. The modal itself works fine, but my attempts to resize it (which work fine in Firefox) don\'t work in IE8.

I\'m just adding a class (wide-mod

6条回答
  •  灰色年华
    2020-12-29 20:31

    In bootstrap 3 you need assign width not to .modal class but to .modal-dialog

    #modalTest .modal-dialog
    {
        width: 500px; /* your width */
    }
    

提交回复
热议问题