Skip to content

Instantly share code, notes, and snippets.

@sergiois
Created October 7, 2013 16:54
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 sergiois/6871195 to your computer and use it in GitHub Desktop.
Save sergiois/6871195 to your computer and use it in GitHub Desktop.
Estructura de media queries > css responsive
/* resolucion 800 x 600 */
@media (min-width: 800px) and (max-width: 959px) {
}
/* resolucion 768 x 1024 */
@media (min-width: 768px) and (max-width: 799px) {
}
/* resolucion 600 x 800 */
@media (min-width: 600px) and (max-width: 767px) {
}
/* resolucion 480 x 320 */
@media (min-width: 480px) and (max-width: 599px) {
}
/* resolucion 320 x 480 */
@media (max-width: 479px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment