Container Queries
Deklaration
<nav>
<ul>
<li><a href="page-1.html">Menu 1</a></li>
<li><a href="page-2.html">Menu 2</a></li>
<li><a href="page-3.html">Menu 3</a></li>
</ul>
</nav>/* Anonymen Container deklarieren */
nav {
container-type: inline-size;
}
/* Default: Mobile first = Vertikale Anordnung */
nav ul {
display: flex;
flex-direction: column;
gap: 20px;
}
/* Container query */
@container (width >= 800px) {
/* Desktop: Horizontale Anordnung */
nav ul {
flex-direction: row;
}
}🛠️ Aufgabe
Last updated
Was this helpful?