I recently created a PNG image from the website . This image is only 1kb in size and I am currently using it as the background-image on the body tag of my webpage.
Now, I am contemplating using another image that is significantly larger at 500kb (with dimensions of 1,920px * 1,080px). I am concerned about the impact this larger image will have on load time and data consumption. If I decide to use the smaller .png image (1kb) on repeat, how much data will it consume instead?
body {
background-image:url("../path/imgName.png") ;
}
I wonder if there would be any noticeable difference in display quality for images of the same size (1,920px * 1,080px)???