Skip to content

Instantly share code, notes, and snippets.

@bsakhanov
Created September 21, 2019 07:27
Show Gist options
  • Select an option

  • Save bsakhanov/9f1a9e155e79ede39b8d999740963fcb to your computer and use it in GitHub Desktop.

Select an option

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