A Pen by Beibit Sakhanov on CodePen.
Created
September 21, 2019 07:27
-
-
Save bsakhanov/9f1a9e155e79ede39b8d999740963fcb to your computer and use it in GitHub Desktop.
picture and source srcset - case
This file contains hidden or 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 srcset="blog-10-wide@1x.webp 1x, | |
| blog-10-wide@2x.webp 2x" | |
| media="(min-width: 600px)" | |
| type="image/webp"> | |
| <source srcset="blog-10-wide@1x.png 1x, | |
| blog-10-wide@2x.png 2x" | |
| media="(min-width: 600px)"> | |
| <source srcset="blog-10-square@1x.webp 1x, | |
| blog-10-square@2x.webp 2x" | |
| type="image/webp"> | |
| <img src="blog-10-square@1x.png" | |
| srcset="blog-10-square@2x.png 2x" | |
| alt="Девушка пьёт кофе"> | |
| </picture> |
This file contains hidden or 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
| img { | |
| max-width: 100%; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment