Created
August 22, 2019 03:50
-
-
Save berkeleycole/1b5a1932c147c80891b1c6030154a632 to your computer and use it in GitHub Desktop.
srcset-with-sizes
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 src="my-awesome-image.png" | |
| alt="something awesome" | |
| srcset="my-awesome-image.png 100w, my-awesome-image.png 500w, my-awesome-image.png 1000w" | |
| sizes="(min-width: 900px) 1000px, | |
| (max-width: 900px) and (min-width: 400px) 50em, | |
| ( not (orientation: portrait) ) 300px, | |
| ( (orientation: landscape) or (min-width: 1000px) ) 50vw, | |
| 100vw" | |
| /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment