您好我正在建立一个网站,我有一个图像,我想用作网站的一部分的背景图像。滚动图像时滚动。我只是想调整我的CSS中的图像大小以适应屏幕的一部分...有人帮我吗?它看起来更具挑战性。
#stat, #newsletter
{
background: url('../img/worklogo.png') center bottom no-repeat;
background-attachment: fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
答案 0 :(得分:0)
只需删除background-attachment: fixed;
并使用background-image:url('');
而不是background:url('');
这是Demo。