Skip to content

Instantly share code, notes, and snippets.

@malachi358
Forked from necolas/css-responsive-images.html
Created December 25, 2013 01:25
Show Gist options
  • Save malachi358/8119391 to your computer and use it in GitHub Desktop.
Save malachi358/8119391 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS responsive images</title>
<style>
/* Doesn't stop original source image being
downloaded too */
@media (min-device-width:600px) {
img[data-src-600px] {
content: attr(data-src-600px, url);
}
}
@media (min-device-width:800px) {
img[data-src-800px] {
content: attr(data-src-800px, url);
}
}
</style>
</head>
<body>
<img src="image.jpg"
data-src-600px="image-600px.jpg"
data-src-800px="image-800px.jpg"
alt="">
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment