我使用与固定主体背景相同的高分辨率背景,并且我还将它与另外五个元素一起使用
body{
background: url(highres.png) top center;
background-attactment: fixed;
}
box1{
background: url(highres.png) top center;
background-attactment: fixed;
}
box2{
background: url(highres.png) top center;
background-attactment: fixed;
}
.......
.......
我的问题是,如果我像上面一样多次使用 url(image.png),浏览器是一次加载一次还是一次加载每个 url?这会是浏览体验缓慢的原因吗?