Skip to content

Instantly share code, notes, and snippets.

@jongrover
Created August 16, 2013 19:30
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 jongrover/6252810 to your computer and use it in GitHub Desktop.
Save jongrover/6252810 to your computer and use it in GitHub Desktop.
CSS3 Media Queries Example
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
#wrapper {
width: 600px;
margin: 0 auto;
}
header {
height: 100px;
background: yellow;
}
#toys {
float: left;
width: 33.3333%;
background: aqua;
}
#grooming {
float: left;
width: 33.3333%;
background: lime;
}
#food {
float: left;
width: 33.3333%;
background: fuchsia;
}
@media only screen and (max-width: 568px) {
#wrapper {
width: 90%;
}
#toys, #grooming, #food {
float: none;
width: 100%;
}
}
@media only screen and (max-width: 320px) {
#toys, #grooming, #food {
color: red;
font-size: 1.5em;
}
}
</style>
</head>
<body>
<div id="wrapper">
<header>
<h1>Petes Pet Supply</h1>
</header>
<section id="toys">
<h2>Toys</h2>
</section>
<section id="grooming">
<h2>Grooming</h2>
</section>
<section id="food">
<h2>Food</h2>
</section>
</div>
<script src="http://code.jquery.com/jquery-1.10.2.min.js">
</script>
<script>
$(window).resize(function() {
var width = $('html').width();
console.log(width);
if (width < 400) {
$('#toys').fadeTo(200, .2);
}
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment