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="[email protected] 1x, | |
[email protected] 2x" | |
media="(min-width: 600px)" | |
type="image/webp"> | |
<source srcset="[email protected] 1x, | |
[email protected] 2x" | |
media="(min-width: 600px)"> | |
<source srcset="[email protected] 1x, | |
[email protected] 2x" | |
type="image/webp"> | |
<img src="[email protected]" | |
srcset="[email protected] 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