Skip to content

Instantly share code, notes, and snippets.

@brianfeister
Created August 29, 2025 12:46
Show Gist options
  • Save brianfeister/9daa1fbbf85c3079276f823a2d3f23bc to your computer and use it in GitHub Desktop.
Save brianfeister/9daa1fbbf85c3079276f823a2d3f23bc to your computer and use it in GitHub Desktop.
/* Show an item only when an item within the parenthas focus */
.show-on-focus-parent:focus-within .show-on-focus-child {
opacity: 1;
max-height: 200px;
visibility: visible;
transform: translateY(0);
transition: all 0.2s ease-in-out;
}
.show-on-focus-child {
opacity: 0;
max-height: 0;
visibility: hidden;
transform: translateY(-10px);
transition: all 0.2s ease-in-out;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment