Skip to content

Instantly share code, notes, and snippets.

@bballentine
Created March 4, 2013 21:10
Show Gist options
  • Save bballentine/5085706 to your computer and use it in GitHub Desktop.
Save bballentine/5085706 to your computer and use it in GitHub Desktop.
Picture element
<picture width="500" height="500">
<source media="(min-width: 769px)" src="large.jpg">
<source media="(min-width: 480px)" src="med.jpg">
<source src="small.jpg">
<img src="small.jpg" alt="">
<p>Accessible text</p>
</picture>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment