Skip to content

Instantly share code, notes, and snippets.

View EugenNekrasov's full-sized avatar

gen EugenNekrasov

  • Erevan
View GitHub Profile
@EugenNekrasov
EugenNekrasov / gist:6b462faba88a7b0a1a04f7fd3c548102
Created May 27, 2024 18:02
Adaptive picture with few formats
<picture>
<source media="(min-width: 1200px)" srcset="[email protected] 1x, [email protected] 2x" type="image/webp">
<source media="(min-width: 1200px)" srcset="[email protected] 1x, [email protected] 2x" type="image/png">
<source srcset="[email protected] 1x, [email protected] 2x" type="image/webp">
<source srcset="[email protected] 1x, [email protected] 2x" type="image/png">
<img src="[email protected]" alt="Fallback image">
</picture>