Skip to content

Instantly share code, notes, and snippets.

@trent-boyd
Last active December 21, 2015 09:19
Show Gist options
  • Save trent-boyd/6284113 to your computer and use it in GitHub Desktop.
Save trent-boyd/6284113 to your computer and use it in GitHub Desktop.
Media Breakpoints
body::before {
background-color: white;
color: black;
content: '';
padding: 5px;
position: absolute;
z-index: 1000000;
}
@media only screen and (min-width: 600px) {
body::before {
content: '600px';
}
}
/* continue on for more breakpoints. you get the idea. */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment