Skip to content

Instantly share code, notes, and snippets.

@henshaw
Created March 30, 2025 16:55
Show Gist options
  • Save henshaw/f92eeb971e5386a12d0119cf77843673 to your computer and use it in GitHub Desktop.
Save henshaw/f92eeb971e5386a12d0119cf77843673 to your computer and use it in GitHub Desktop.
Perfect Palette Design using the image srcset property
<picture>
<source media="(max-width: 39rem)" srcset="interior-paint-consulting-mobile.webp" width="1200" height="1196">
<source media="(min-width: 40rem)" srcset="interior-paint-consulting-desktop.webp" width="1600" height="872">
<img src="interior-paint-consulting-desktop.webp" loading="lazy" alt="Interior paint swatches with a bed, rug, and pillow" width="1600" height="872">
</picture>
@henshaw
Copy link
Author

henshaw commented Mar 30, 2025

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment