Last active
December 11, 2015 03:29
-
-
Save emmgfx/4538109 to your computer and use it in GitHub Desktop.
Media queries en la misma hoja de estilos
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Se aplica a la versión normal */ | |
@media screen{ | |
body{ | |
width:75%; | |
} | |
} | |
/* Se aplica a la versión para imprimir */ | |
@media print{ | |
body{ | |
width:100%; | |
} | |
} | |
/* Se aplica a "ventanas" con menos de 699px de ancho */ | |
@media (max-width: 699px){ | |
body{ | |
background:#c00; | |
} | |
} | |
/* Se aplica a "ventanas" con más de 699px de ancho */ | |
@media (min-width: 699px){ | |
body{ | |
background:#0c0; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment