所以如果你有这样的代码:
background: url('image.png');
background: -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#000));
如果它是 webkit,您的浏览器将使用渐变,但如果不是,它将回退并使用图像。如果您使用的是 webkit,则图像甚至不会被下载。所以如果你有:
background: url('image1.png');
background: url('image2.png');
会完全下载“image1”还是应用与“后备”图像相同的规则?