DEV Community

Discussion on: Explain HTML's img srcset vs picture tag Like I'm Five

Collapse
 
matsp profile image
Mats Pfeiffer • Edited

I have no idea why this is working inclusively Safari:

<picture>
  <source srcset="${props.image.srcSet}">
  <img src="${props.image.src}">
</picture>

Maybe Iam working too long on srcset and Safari that I tested something different...