Frontend Tip (1) : Animating Keywords
✨ If you've ever worked with CSS animations, you know the pain of trying to animate size properties that involve keywords like auto.
Traditional CSS just doesn’t natively handle transitions between numerical values and keywords, but by using interpolate-size: allow-keywords
you can know a do smooth animation and transition between the numerical values like (px,rem...etc) and the keywords like auto.
⚠️ Browser Compatibility Warning
Make sure to check browser support and provide fallbacks if you plan to experiment with it in your projects.