所以如果你有这样的代码:
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”或执行与“回退”映像相同的规则?
sample page