Skip to content

Instantly share code, notes, and snippets.

@owain
Last active July 21, 2021 20:56
Show Gist options
  • Save owain/3a4e585a0f3458cc96ca400898a33cbd to your computer and use it in GitHub Desktop.
Save owain/3a4e585a0f3458cc96ca400898a33cbd to your computer and use it in GitHub Desktop.
Making App Blocks Responsive Using CSS Blog Post - Container Query Example
.parent {
contain: layout inline-size;
}
@container (min-width: 400px) {
.child {
display: flex;
flex-wrap: wrap;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment