Is it feasible to maintain a single CSS file for my mobile web app designed for various Android device resolutions? Can I utilize the same set of images and simply scale them down using CSS styles, rather than storing multiple copies of each image for different resolutions? The framework of the webapp consists of HTML5, CSS3, and JavaScript.
Although I am aware that CSS media queries can be implemented to load different images based on device width, I wish to use the same images for all resolutions. Ideally, by embedding high resolution images in the code, is this achievable?
I would appreciate any insights or guidance on whether this approach is possible. Thank you in advance.