我有一个工作正常的画廊,但我想在画廊的右下角添加一张图片,所以我想要:
我知道这个 css 可以解决它:
#container_logo {
position:fixed;
right:0;
bottom:0;
margin:0;
width:75%;
height:75%;
background:url(http://blog.logobee.com/free-logo1.jpg) no-repeat bottom right;
background-size:100%;
}
但是如何将其添加到当前代码中?
我尝试添加额外的一行 background:url(http://blog.logobee.com/free-logo1.jpg)
:
#containingDiv {
width:100%;
margin:0 auto;
padding:0px 0 0 0;
background:url(http://blog.logobee.com/free-logo1.jpg) no-repeat bottom right;
}
但它没有显示在正确的位置......
- 如何更改容器代码,使其在右下角具有固定图像?
请看一下完整的小提琴