Skip to content

Instantly share code, notes, and snippets.

@bsakhanov
Created September 21, 2019 07:27
Show Gist options
  • Save bsakhanov/9f1a9e155e79ede39b8d999740963fcb to your computer and use it in GitHub Desktop.
Save bsakhanov/9f1a9e155e79ede39b8d999740963fcb to your computer and use it in GitHub Desktop.
picture and source srcset - case
<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>
img {
max-width: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment