您好我正在尝试将图片修复到页面的右下角,并且使用css显示正常:
.logo img{
position: absolute;
bottom: 0;
right: 0;
}
但是在调整窗口大小时,图片会在内容之上,请问如何解决?
答案 0 :(得分:0)
看看:http://ryanfait.com/resources/footer-stick-to-bottom-of-page/
然后在图像上使用float:right
答案 1 :(得分:0)
在CSS中的图片上使用否定的“z-index”,例如z-index: -1;
这会将图片拉到内容下方。