Created
December 17, 2016 18:09
-
-
Save akroii/9be89581f2dcc226b3bf4ba8406cf55d to your computer and use it in GitHub Desktop.
responsive images
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> | |
| <!--[if IE 9]><video style="display: none;"><![endif]--> | |
| <source srcset="" media="(max-width: 550px)"> | |
| <source srcset="" media="(max-width: 767px)"> | |
| <source srcset=""> | |
| <!--[if IE 9]></video><![endif]--> | |
| <img src="" alt="" title=""> | |
| </picture> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment