Is it possible to utilize the srcset attribute in CSS to upscale all images to 2x their original size? The usual usage of this attribute is as follows:
<img src="image.jpg" srcset="image.jpg 1x, higher-resolution-image.jpg 2x" >
I'm curious if there's a method to achieve this through CSS for all images to be displayed at 2x. Thank you in advance :D