您好,我正在尝试将图像修复到页面的右下角,并且使用 css 显示效果很好:
.logo img{
position: absolute;
bottom: 0;
right: 0;
}
但是在调整窗口大小时,图像会出现在内容之上,请问如何解决这个问题?
看看:http ://ryanfait.com/resources/footer-stick-to-bottom-of-page/
然后在图像上使用 float:right
在 CSS 中的图像上使用负的“z-index”,例如z-index: -1;
这会将图像拉到内容下方。
在这里查看我的小提琴:http: //jsfiddle.net/davidpauljunior/WzwA5/2/