溢出:隐藏在IE7中工作

时间:2011-11-25 18:54:28

标签: jquery css internet-explorer-7 overflow

任何人都知道如何在IE7中使用它?

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

http://tympanus.net/Tutorials/PortfolioZoomSlider/

我尝试在overflow:hidden上设置.thumb_wrapper,但下一张幻灯片的一部分仍然闪耀并覆盖箭头。

2 个答案:

答案 0 :(得分:5)

position: relative;添加到style.css文件中的.thumb声明中。如果没有某种位置规则,IE7布局引擎将不会强制执行overflow: hidden;

答案 1 :(得分:0)

尝试:

.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;
}

所有款式的结尾。