Skip to content

Instantly share code, notes, and snippets.

@anselmh
Last active September 26, 2015 21:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anselmh/1158855 to your computer and use it in GitHub Desktop.
Save anselmh/1158855 to your computer and use it in GitHub Desktop.
responsive attribute for HTML/CSS3
<!-- backwards compatible solution -->
<!-- the browser should read media-query and then download the right file for the actual screen size -->
<img media-xs="(min-width:640px)" media-xs-src="http://cdn.url.com/img/myimage_xs.jpg" media-m="(max-width:1024px)" media-m-src="http://cdn.url.com/img/myimage_m.jpg" media-xl="(min-width:1025px)" media-xl-src="http://cdn.url.com/img/myimage_xsl.jpg" src="http://cdn.url.com/img/myimage_xs.jpg" />
<img media-xs="(max-width:640px)"
media-xs-src="http://cdn.url.com/img/myimage_xs.jpg"
media-m="(max-width:1024px)"
media-m-src="http://cdn.url.com/img/myimage_m.jpg"
media-xl="(min-width:1025px)"
media-xl-src="http://cdn.url.com/img/myimage_xsl.jpg"
src="http://cdn.url.com/img/myimage_xs.jpg" />
@fhemberger
Copy link

Nice idea, I guess you should use "url:()" instead of "use:()" to make it resemble css rules more (like used in 'background-image')

@anselmh
Copy link
Author

anselmh commented Aug 21, 2011

hm… I'm not sure. Yes, :url() would be more common but it couldn't be clear enough what's menat here. use came into my mind as it's similar to some css3 selectors. But maybe there are more thoughts on it?

@anselmh
Copy link
Author

anselmh commented Aug 21, 2011

changed code to a better and backwards compatible solution.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment