Last active
February 3, 2019 17:54
-
-
Save PhilJ/7e969f5e6f082891f9aa481eaac20d95 to your computer and use it in GitHub Desktop.
srcset Demo
This file contains 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
<!DOCTYPE html> | |
<html> | |
<body> | |
<div style="margin: 0 auto; max-width: 960px"> | |
<img src="https://via.placeholder.com/960" | |
srcset="https://via.placeholder.com/320 320w, | |
https://via.placeholder.com/640 640w, | |
https://via.placeholder.com/960 960w, | |
https://via.placeholder.com/1400 1400w" | |
sizes="(min-width: 960px) 960px, 100vw" | |
style="width: 100%"> | |
<body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment