Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save che-wf/bfb943c9a328ac06c4c46a80398c1527 to your computer and use it in GitHub Desktop.
Save che-wf/bfb943c9a328ac06c4c46a80398c1527 to your computer and use it in GitHub Desktop.
DRY Picture element media queries
<?php
// Define picture element media query values here
$m_mqs = 'min-width:321px';
$l_mqs = 'min-width:641px';
$xl_mqs = 'min-width:1281px';
?>
<picture alt="Alt tag describing the image represented">
<source src="photo-s.jpg"/>
<source src="photo-m.jpg" media="<?php ehco $m_mqs; ?>"/>
<source src="photo-l.jpg" media="<?php ehco $l_mqs; ?>"/>
<source src="photo-xl.jpg" media="<?php ehco $xl_mqs; ?>" />
<img src="photo-s.jpg" />
</picture>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment