Last active
February 8, 2020 08:21
-
-
Save reanim8ed/7f678b041c5391f2d80003a8ae537f3c to your computer and use it in GitHub Desktop.
[Picture tag] Use multiple image formats with a fallback #html5 #webp
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> | |
<source srcset='your/path/image.webp' type='image/webp' /> | |
<img src='your/path/image.jpg' alt="" /> | |
</picture> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment