The <picture> should have a fallback <img> anyway.
One accessibility issue could happen if the image is not the same, because the alt that the screen reader will read is the one from the <img>. So if for any reason the images in the <source> don't match the one from the <img>, it could be confusing/misleading.
Thanks for the comment!
What tag are you using? (It doesn't display it)
Picture
The
<picture>should have a fallback<img>anyway.One accessibility issue could happen if the image is not the same, because the
altthat the screen reader will read is the one from the<img>. So if for any reason the images in the<source>don't match the one from the<img>, it could be confusing/misleading.That's the answer I need. Thank you. 👍