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

前端 未结 6 1124
佛祖请我去吃肉
佛祖请我去吃肉 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:37

    I think you need to set the width in pixels and adjust the margin-left. For example,

    .modal-dialog {
        width:700px;
        margin-left:-320px;
    }
    

    The margin left must be half the width of the modal, minus 30px for the scrollbar.

    Here's an example on Bootply: http://bootply.com/85213

提交回复
热议问题