Skip to content

Instantly share code, notes, and snippets.

@zenaul
Created April 29, 2017 03:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zenaul/f02e620ecb38be30af829dadfde2dedf to your computer and use it in GitHub Desktop.
Save zenaul/f02e620ecb38be30af829dadfde2dedf to your computer and use it in GitHub Desktop.
Responsive Query
/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1200px) {
}
/* Tablet desktop :768px. */
@media (min-width: 768px) and (max-width: 991px) {
}
/* small mobile :320px. */
@media (max-width: 767px) {
.container {width:300px}
}
/* Large Mobile :480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) {
.container {width:450px}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment