Dies ist eine alte Version des Dokuments!


Bausteine [HTML & CSS]

Internetpräsenz erstellen - Hilfreiche Links

Inhalt in einer Box zentrieren:

display: flex;
align-items: center;
justify-content: center;

https://developer.mozilla.org/de/docs/Web/CSS/Media_Queries/Using_media_queries

/* Mobile Styles */
@media only screen and (max-width: 400px) {
 
     }
 
/* Tablet Styles */
@media only screen and (min-width: 401px) and (max-width: 960px) {
 
}
 
/* Desktop Styles */
@media only screen and (min-width: 961px) {
    }