本文介绍了jQuery的Fancybox 2添加了保证金权利?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我使用Fancybox 2 jquery插件时,会添加23px的边距右边(滚动条的宽度).

When I use the Fancybox 2 jquery plugin, a margin-right of 23px gets added (width of scrollbar).

这是网站(单击网站地图"按钮): http://kevinlouisdesign.com/projects/Canu/web/

Here's the website (click on the Site Map button):http://kevinlouisdesign.com/projects/Canu/web/

我不喜欢的是,当花式框出现时,它会使内容跳到左侧.我想摆脱这种边距右样式.

What I don't like is that it makes the content jump to the left when the fancybox shows up. I'd like to get rid of this margin-right style.

推荐答案

这是一个CSS修复程序.在.fancybox-lock样式上,删除overflow-y: scroll,这样的样式如下:

It's a CSS fix. On the .fancybox-lock style, get rid of the overflow-y: scroll, so the style that looks like this:

.fancybox-lock .fancybox-overlay {
    overflow: auto;
    overflow-y: scroll;
}

应该看起来像这样:

.fancybox-lock .fancybox-overlay {
    overflow: auto;
}

这将为您处理.

这篇关于jQuery的Fancybox 2添加了保证金权利?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 09:53