Skip to content

Instantly share code, notes, and snippets.

@criography
Created July 11, 2012 18:02
Show Gist options
  • Select an option

  • Save criography/3092058 to your computer and use it in GitHub Desktop.

Select an option

Save criography/3092058 to your computer and use it in GitHub Desktop.
Fuxed Up Media Queries
/**
* Fuxed Up Media Queries
*/
body,
html{
padding:0;
border:0;
margin:0;
height:300%;
}
#div{
position:absolute;
width:1024px;
height:100px;
background:#000;
}
@media only screen and (min-width: 320px){
#div{
background:#444;
}
}
@media only screen and (min-width: 480px){
#div{
background:#888;
}
}
@media only screen and (min-width: 768px){
#div{
background:#bbb;
}
}
@media only screen and (min-width: 1024px){
#div{
background:#eee;
}
}
<!-- content to be placed inside <body>…</body> -->
<div id="div"></div>
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment