0

您好,我正在尝试将图像修复到页面的右下角,并且使用 css 显示效果很好:

.logo img{
    position: absolute;
    bottom: 0;
    right: 0;
}

但是在调整窗口大小时,图像会出现在内容之上,请问如何解决这个问题?

4

2 回答 2

0

看看:http ://ryanfait.com/resources/footer-stick-to-bottom-of-page/

然后在图像上使用 float:right

于 2013-10-20T22:43:40.990 回答
0

在 CSS 中的图像上使用负的“z-index”,例如z-index: -1;

这会将图像拉到内容下方。

在这里查看我的小提琴:http: //jsfiddle.net/davidpauljunior/WzwA5/2/

于 2013-10-20T22:46:44.337 回答