Skip to content

Instantly share code, notes, and snippets.

@rbayliss
Created October 24, 2013 21:06
Show Gist options
  • Save rbayliss/7144980 to your computer and use it in GitHub Desktop.
Save rbayliss/7144980 to your computer and use it in GitHub Desktop.
/**
* Graceful degradation
*/
#sidebar, #main {
float:left;
}
#sidebar {
width:25%;
}
#main {
width:50%;
}
@media (max-width: 800px) {
#sidebar, #main {
display:block;
float:none;
width:auto;
}
}
/**
* Progressive enhancement
*/
#sidebar, #main {
display:block;
}
@media (min-width: 800px) {
#sidebar, #main {
float:left;
}
#sidebar {
width:25%;
}
#main {
width:50%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment