HTML5 Picture Tag

HTML5 Picture Tag

<picture>   <source media="(min-width: 64em)" src="high-res.jpg">   <source media="(min-width: 37.5em)" src="med-res.jpg">   <source src="low-res.jpg">   <img src="fallback.jpg" alt="This picture loads on non-supporting browsers.">   <p>Accessible text.</p></picture>
Comments are closed.