Skip to content

Instantly share code, notes, and snippets.

@JoelLisenby
Created August 8, 2017 04:04
Show Gist options
  • Save JoelLisenby/eb3737adeb8715efe374889226de4c41 to your computer and use it in GitHub Desktop.
Save JoelLisenby/eb3737adeb8715efe374889226de4c41 to your computer and use it in GitHub Desktop.
main {
display: block;
width: 1000px;
height: 50px;
margin: 0 auto;
background-color: red;
}
@media (max-width: 980px) {
main {
width: 700px;
}
}
@media (max-width: 480px) {
main {
width: 100px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment