溢出隐藏 - IE7中的问题

时间:2011-03-28 16:50:55

标签: javascript jquery css internet-explorer internet-explorer-7

我正在使用此插件http://www.wbotelhos.com/capty/,我发现它在 IE 7中存在问题

溢出:隐藏不起作用(文件js)

任何人都知道如何解决这个问题?如果我们能解决这个问题,我显然会与开发者分享

谢谢!

2 个答案:

答案 0 :(得分:8)

this solve the issue:

添加行:

position: 'relative',

最终代码

$wrapper.css({
            overflow:   'hidden',
            position: 'relative',
            height:     $this.height(),
            width:      $this.width()
        });

答案 1 :(得分:0)

在IE版本8之前,某些样式属性(包括溢出)仅适用于元素,如果该元素具有IE调用hasLayout属性,则在其位置设置为relative或absolute(set,not inherited)时显式或自动设置。 doctype必须是一个不强制IE'怪癖'模式的文档。