Skip to content

Instantly share code, notes, and snippets.

@Kcko
Created February 25, 2025 15:08
Show Gist options
  • Save Kcko/de02df7b9bc0dc87bded6823f06487be to your computer and use it in GitHub Desktop.
Save Kcko/de02df7b9bc0dc87bded6823f06487be to your computer and use it in GitHub Desktop.
/*
// 1 moznost, zapnout globalne
:root {
interpolate-size: allow-keywords;
} */
.x {
width: 50px;
overflow: hidden;
background: red;
white-space: nowrap;
transition: 300ms;
}
/*2 nebo pres calc-size */
.x:hover {
width: calc-size(max-content, size);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment