Created
April 11, 2019 08:20
-
-
Save WordPress-Handbuch/eb26c555b3d6c864a72ef6c027e014ac to your computer and use it in GitHub Desktop.
Example RWD breakpoints
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
/* CSS Styles ausserhalb der folgenden speziellen Media Querys sind fuer grosse Monitore, breiter als 1199px, vorgesehen */ | |
@media all and (max-width: 1199px) { | |
/* CSS Styles fuer grosse Displays */ | |
} | |
@media all and (max-width: 991px) { | |
/* CSS Styles fuer Tablets hochkant */ | |
} | |
@media all and (max-width: 768px) { | |
/* CSS Styles fuer Smartphones, horizontal */ | |
} | |
@media all and (max-width: 575px) { | |
/* CSS Styles fuer kleine Mobiltelefone, hochkant */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment