Skip to content

Instantly share code, notes, and snippets.

@mateusneves
Created June 7, 2016 13:07
Show Gist options
  • Save mateusneves/18bc8767d3a91214782faf94e6f55512 to your computer and use it in GitHub Desktop.
Save mateusneves/18bc8767d3a91214782faf94e6f55512 to your computer and use it in GitHub Desktop.
Basic media query for responsive websites
@media only screen and (min-width: 320px) {
}
@media only screen and (min-width: 480px) {
}
@media only screen and (min-width: 768px) {
}
@media only screen and (min-width: 1024px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment