Skip to content

Instantly share code, notes, and snippets.

@oliverlindberg
Created March 4, 2024 08:40
Show Gist options
  • Save oliverlindberg/65f6ca9c6f57a13d80977e0cd4cf6cd5 to your computer and use it in GitHub Desktop.
Save oliverlindberg/65f6ca9c6f57a13d80977e0cd4cf6cd5 to your computer and use it in GitHub Desktop.
/* Definiere den Container-Typ für die Klasse .container */
.container {
container-type: inline-size;
}
/* Definiere Standard-Stile für die Klasse .card */
.card {
background: blue;
}
/* Verwende Container-Queries, um die Hintergrundfarbe der Klasse .card basierend auf der Container-Breite zu ändern */
@container (min-width: 32em) {
.card {
background: red;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment