DEV Community

Discussion on: Quick Tips: CSS Transforms and Transitions

Collapse
 
maditya profile image
Aditya Menon • Edited

Also a quick tip, if you're ever facing any performance issues with your animations take a look into the CSS property will-change. It's used to give the browser an advance warning that a certain property value will change, allowing the browser to do certain computations ahead of time!

Collapse
 
coffeecraftcode profile image
Christina Gorton

Great tip! :)

Collapse
 
gelzintvidaure profile image
Gelzintvidaure

Is it good practice to use will change frequently in projects?