Reputation: 24061
I've been reading about srcset.
Unfortunately it does not have full compatibility with all browsers. What would happen with a browser that does not support it? Would all images be downloaded? Can I specify what image to use in this case?
Upvotes: 3
Views: 195
Reputation: 1273
The srcset
attribute is ignored in browsers that don't support it, so only the src
attribute is used.
Upvotes: 5