Die Navigation und der content sollen bei kleineren Auflösung unsichtbar werden.
Das funktioniert nicht.
Media Query für kleinere Bildschirme
@media screen and (max-width: 375px) {
nav, .content {
display: none !important;
visibility: hidden; !important;
}
}
/* Navigation */
nav {
font-family: 'Copperplate', sans-serif;
font-size: 20px;
position: fixed;
top: 0;
width: 100%;
background: linear-gradient(to bottom, #4e4b8d, #a6c9ff);
padding: 20px;
color: white;
display: flex;
justify-content: center;
z-index: 1000;
box-shadow: 0 7px 7px rgba(33, 23, 23, 0.2);
}
/* Inhalt */
.content {
max-width: 1000px;
margin: 120px auto; /* Anpassung für den Abstand zur fixierten Navigation */
padding: 20px;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
text-align: center;
}
Danke
Thomas
Das funktioniert nicht.
Media Query für kleinere Bildschirme
@media screen and (max-width: 375px) {
nav, .content {
display: none !important;
visibility: hidden; !important;
}
}
/* Navigation */
nav {
font-family: 'Copperplate', sans-serif;
font-size: 20px;
position: fixed;
top: 0;
width: 100%;
background: linear-gradient(to bottom, #4e4b8d, #a6c9ff);
padding: 20px;
color: white;
display: flex;
justify-content: center;
z-index: 1000;
box-shadow: 0 7px 7px rgba(33, 23, 23, 0.2);
}
/* Inhalt */
.content {
max-width: 1000px;
margin: 120px auto; /* Anpassung für den Abstand zur fixierten Navigation */
padding: 20px;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
text-align: center;
}
Danke
Thomas