1

好的,我正在尝试获取位置固定以隐藏在特定 DIV 后面的图像。据我了解,这应该可以使用z-index. 但是,我已经尝试了所有方法,但无法使其正常工作。

网址:http ://www.aadesigns.net/who-we-are/testimonials/

我遇到问题的图像是快乐的女人在庆祝。一切都很好,直到它到达页面底部,你会看到她的重叠 DIV。

我已经在萤火虫中待了大约 1.5 个小时,试图通过操纵 z-index 来弄清楚如何做到这一点......

任何帮助将不胜感激。

编辑*更具体地说,我需要图像在页脚和 footer_bottom DIV 后面消失

4

3 回答 3

1

添加z-index:100到 img 内联样式。最好将此内联样式转换为如下所示的类

.testimonials img{
    position:fixed;
    left:50%;
     margin-left:-600px;
    bottom:0; 
    z-index:100
}
于 2012-12-04T10:00:21.107 回答
1

适用z-index: 100;img

<img src="http://www.aadesigns.net/wp-content/uploads/2012/09/happycustomer1.png" alt="" title="happycustomer" style="position:fixed;left:50%;margin-left:-600px;bottom:0;z-index: 100;">
于 2012-12-04T10:03:01.433 回答
0

定义你的#footer z-index:-1; 添加这个 css

#footer{
z-index:-1;
}

--------

或第二个选项

.testimonials img{
z-index:1;
}
于 2012-12-04T09:59:01.200 回答