Skip to content

Instantly share code, notes, and snippets.

@WordPress-Handbuch
Created April 11, 2019 08:20
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 WordPress-Handbuch/eb26c555b3d6c864a72ef6c027e014ac to your computer and use it in GitHub Desktop.
Save WordPress-Handbuch/eb26c555b3d6c864a72ef6c027e014ac to your computer and use it in GitHub Desktop.
Example RWD breakpoints
/* 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