Last active
May 8, 2020 09:13
-
-
Save Manyaka/5e6d272de205096d98b1ddd18c2b972d to your computer and use it in GitHub Desktop.
responsive img
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<picture> | |
<source | |
media="(max-width: 799px)" | |
srcset="cupcake.webp 1x, [email protected] 2x" | |
type="image/webp" | |
> | |
<source | |
media="(min-width: 800px)" | |
srcset="huge-cupcake.webp 1x, [email protected] 2x" | |
type="image/webp" | |
> | |
<source | |
media="(min-width: 800px)" | |
srcset="huge-cupcake.webp 1x, [email protected] 2x" | |
type="image/jpeg" //для сафари | |
> | |
<img src="cupcake.jpg" srcset="cupcake.jpg 1x, [email protected] 2x" alt="a yummy cupcake"> | |
</picture> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment