码迷,mamicode.com
首页 > 其他好文 > 详细

bootstrap弹窗导致内容区左移

时间:2017-06-09 13:24:50      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:images   padding   不能   modal   boot   com   技术分享   分享   important   

用bootstrap在多次弹窗后导致了内容区左移动了,如下:

技术分享

最后只要加上如下代码,就可以了

body{
    padding-right: 0!important;
}

同时,在默认的弹窗是右边的滑轮是不能滑动的

.modal-open {
    overflow: initial;
}

便可以了.modal-open是在弹窗时加在body上的,当然不要滑动就直接改为auto

bootstrap的遮罩层是.modal-backdrop,所以有些在遮罩层上面的肯定不要设置遮罩层的z-index, 如下:

.modal-backdrop{
    z-index: 3;
}

以上就是这些....加油

bootstrap弹窗导致内容区左移

标签:images   padding   不能   modal   boot   com   技术分享   分享   important   

原文地址:http://www.cnblogs.com/tqt--0812/p/6971521.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!