What is the will-change property?
It hints the browser that an element will soon change, so the browser can optimize
rendering ahead of time.
Example:
.box {
will-change: transform, opacity;
Key Takeaway:
Improves animation performance but use carefully — too many can waste memory.