Skip to content

Instantly share code, notes, and snippets.

@jaggy
Last active August 29, 2024 20:39
Show Gist options
  • Save jaggy/133fd395a8d7fd12345a9866822a249d to your computer and use it in GitHub Desktop.
Save jaggy/133fd395a8d7fd12345a9866822a249d to your computer and use it in GitHub Desktop.
<html>
<head>
<style>
.box-that-changes-color {
height: 1rem;
width: 1rem;
background: red;
}
@media (min-width: 768px) {
.box-that-changes-color {
background-color: green;
}
}
.box-with-vh {
height: 10vh;
}
.container-query {
container-type: inline-size;
}
</style>
</head>
<body>
<div class="container-query"></div>
<div class="box-that-changes-color"></div>
<div class="box-with-vh"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment