RT jhey 🔨🐻✨
CSS Tip! ✨
Did you know you can animate CSS Grid tracks? 👀
ul:is(:hover,:focus-within) {--active: 1;}
ul {
grid-template-columns: auto repeat(3, calc(10px + (var(--active) * 100px)));
transition: all 0.2s;
}
Adjust layouts based on interaction! 😎
@CodePen link below! 👇
https://twitter.com/jh3yy/status/1613267674599153664