Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/37.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Jquery 获取溢出:隐藏以在IE7中工作_Jquery_Css_Internet Explorer 7_Overflow - Fatal编程技术网

Jquery 获取溢出:隐藏以在IE7中工作

Jquery 获取溢出:隐藏以在IE7中工作,jquery,css,internet-explorer-7,overflow,Jquery,Css,Internet Explorer 7,Overflow,有人知道如何在IE7中实现这一点吗 图像并排显示(由于溢出),而不是作为滑块显示 我尝试在上设置溢出:隐藏。thumb\u包装,但下一张幻灯片的一部分仍然亮起并覆盖箭头。添加位置:相对到style.css文件中的.thumb声明。IE7布局引擎不会强制执行溢出:隐藏没有某种位置规则。添加位置:相对到style.css文件中的.thumb声明。IE7布局引擎不会强制执行溢出:隐藏没有某种位置规则。尝试: .thumb_wrapper A.next, .thumb_wrapper A.prev{

有人知道如何在IE7中实现这一点吗

图像并排显示(由于溢出),而不是作为滑块显示


我尝试在
上设置
溢出:隐藏
。thumb\u包装
,但下一张幻灯片的一部分仍然亮起并覆盖箭头。

添加
位置:相对
到style.css文件中的
.thumb
声明。IE7布局引擎不会强制执行
溢出:隐藏没有某种位置规则。

添加
位置:相对
到style.css文件中的
.thumb
声明。IE7布局引擎不会强制执行
溢出:隐藏没有某种位置规则。

尝试:

.thumb_wrapper A.next, .thumb_wrapper A.prev{
    *display:block;
    *z-index:10000;
    *background-color:red;
    *top:15px;
    *background-position:left center;
    *height:100%;
    *width:40px;
}

.thumb_wrapper{
    *overflow:hidden;
}
在所有样式的末尾。

尝试:

.thumb_wrapper A.next, .thumb_wrapper A.prev{
    *display:block;
    *z-index:10000;
    *background-color:red;
    *top:15px;
    *background-position:left center;
    *height:100%;
    *width:40px;
}

.thumb_wrapper{
    *overflow:hidden;
}

在所有样式的末尾。

不知道它是否相关,但也许你应该看看似乎大部分是不相关的验证错误。不知道它是否相关,但也许你应该看看似乎大部分是不相关的验证错误。没有必要,因为其他用户的解决方案起了作用(添加位置:relative to.thumb)--谢谢!没有必要,因为其他用户的解决方案有效(添加position:relative to.thumb)——不过谢谢!