Generally when doing responsive / mobile first design we use media queries to send different CSS to different screen sizes.
A good design may include the default (small) resolution not having any images.
This is easy to achieve when using background-image in CSS for your images but I can't imagine how you would achieve this using semantic <img> tags.
- Can this be done with HTML?
- Is it acceptable to use CSS for all your images?
Personally I like having no images for my default small screen size, however I find it very ugly to not send any images to the HTML-only version for desktops.
Note: JavaScript solutions are not acceptable.
Reference image

imghave a specific relevance to the page, that is, you just don't leave them out when sending the page to a smaller screen. CSS on the other hand is meant for decoration, and therefore it's semantically OK to use different CSS for differently sized screens. – Mr Lister Jan 23 at 11:06<img>is for image content that is part of the page and not optional. background images in CSS are for decorations and additions that are nice to add but not neccessary. – Raynos Jan 23 at 11:13img { display:none; }an option? It will not display images, probably browsers will not ever attempt to download it. – Sergiy T. Jan 23 at 11:24