任何人都知道如何在IE7中使用它?
图像并排显示(由于溢出)而不是滑块。
http://tympanus.net/Tutorials/PortfolioZoomSlider/
我尝试在overflow:hidden
上设置.thumb_wrapper
,但下一张幻灯片的一部分仍然闪耀并覆盖箭头。
答案 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;
}
所有款式的结尾。