Skip to content

Instantly share code, notes, and snippets.

@shankarsridhar
Last active February 23, 2016 03:15
Show Gist options
  • Save shankarsridhar/71a8cad95267c57bd84f to your computer and use it in GitHub Desktop.
Save shankarsridhar/71a8cad95267c57bd84f to your computer and use it in GitHub Desktop.
used for easy debugging and while working on Responsive web layout
body {
background-color: red;
}
@media only screen and (min-width: 544px) {
body {
background-color: blue;
}
}
@media only screen and (min-width: 768px) {
body {
background-color: green;
}
}
@media only screen and (min-width: 992px) {
body {
background-color: yellow;
}
}
@media only screen and (min-width: 1200px) {
body {
background-color: orange;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment