Skip to content

Instantly share code, notes, and snippets.

@davidkryzaniak
Created December 1, 2012 04:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidkryzaniak/4180580 to your computer and use it in GitHub Desktop.
Save davidkryzaniak/4180580 to your computer and use it in GitHub Desktop.
Responsive Image Download Test
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Created by: David Kryzaniak (http://dave.kz/) -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title></title>
<style>
/* Please don't download this ever. */
.thisClassDoesNotGetUsed{background:url('http://media.dexigner.com/article/20987/BMW_Vision_ConnectedDrive.jpg');}
@media screen and (max-width: 400px) {
/* Don't download this until it's needed! */
body{
background:url('http://www.motorstown.com/images/bmw-30-07.jpg');
}
}
</style>
</head>
<body>
<header>
<nav>
<ul>
<li>Your menu</li>
</ul>
</nav>
</header>
<section>
<article>
<header>
<h2>Article #1 title</h2>
<p>Posted on <time datetime="2010-01-01T10:10:10+02:00">January 1st 2010</time></p>
</header>
<p>Your article goes here.</p>
</article>
</section>
<footer>
<p>Feet in the Footer</p>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment