Created
March 4, 2024 08:40
-
-
Save oliverlindberg/65f6ca9c6f57a13d80977e0cd4cf6cd5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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