如何限制我网页的背景图片不动,并且保持在右下角。
.bg {
padding: 25px;
background-image: url(../images/bg.jpg);
background-position: right center;
background-repeat: no-repeat;
background-attachment: fixed;
}
上面是我使用的css样式
.bg {
background-image: url(../images/bg.jpg);
background-position: right bottom;
background-repeat: no-repeat;
background-attachment: fixed;
}
这样才能保持在右下角.
说明:
background-image: url(../images/bg.jpg);
设定背景图片
background-position: right bottom;
背景定位在右 下的位置
background-repeat: no-repeat;
背景图片不重复
background-attachment: fixed;
背景图片固定,不跟随下拉条滚动.