Created
November 13, 2011 14:03
-
-
Save jensgro/1362137 to your computer and use it in GitHub Desktop.
Media Queries für ein externes CSS
This file contains hidden or 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
/* Am Anfang steht CSS für alle */ | |
body { /* allgemeine Regeln */} | |
@media only screen and (min-width: 480px) { | |
/* mobile Browser */ | |
} | |
@media only screen and (min-width: 768px) { | |
/* Tablets im Portrait Modus */ | |
} | |
@media only screen and (min-width: 768px) { | |
/* Tablets im Landscape Modus, Netbooks, Notebooks, Desktop Browser */ | |
} | |
@media print { | |
/* Das Printstylesheet nicht vergessen! */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment