---
title: "will-change is applied too broadly (smooth/will-change-overuse)"
description: "smooth/will-change-overuse: Every will-change layer costs GPU memory; applying it statically to many elements (or html/body) can make scrolling worse, not…"
canonical: https://void-design.vercel.app/rules/smooth/will-change-overuse
lastModified: 2026-09-16
---

# will-change is applied too broadly

`smooth/will-change-overuse` · severity **info** · category Smoothness · detected by `void smooth` and `void audit`

## Why it matters

Every will-change layer costs GPU memory; applying it statically to many elements (or html/body) can make scrolling worse, not better.

## How to fix it

Set will-change only on the few elements about to animate, ideally just before the interaction, and remove it afterwards.

## More smoothness rules

`void smooth` reports 13 rules in this category. How the page feels after it loads: dropped frames during a scripted scroll, long animation frames, INP of real clicks, shifts after input, animated layout properties, idle rAF loops and reduced-motion handling.

- `layout-shift-after-input` Layout shifts long after an interaction — [smooth/layout-shift-after-input](https://void-design.vercel.app/rules/smooth/layout-shift-after-input)
- `layout-shift-on-scroll` Layout shifts while scrolling — [smooth/layout-shift-on-scroll](https://void-design.vercel.app/rules/smooth/layout-shift-on-scroll)
- `animate-layout-property` Animation of a layout-triggering property — [smooth/animate-layout-property](https://void-design.vercel.app/rules/smooth/animate-layout-property)
- `transition-all` transition: all — [smooth/transition-all](https://void-design.vercel.app/rules/smooth/transition-all)
- `reduced-motion-ignored` Animations keep running with prefers-reduced-motion — [smooth/reduced-motion-ignored](https://void-design.vercel.app/rules/smooth/reduced-motion-ignored)
- `raf-loop-idle` requestAnimationFrame loop runs while idle — [smooth/raf-loop-idle](https://void-design.vercel.app/rules/smooth/raf-loop-idle)
- `scroll-timeline-no-fallback` Content is invisible without scroll-driven-animation support — [smooth/scroll-timeline-no-fallback](https://void-design.vercel.app/rules/smooth/scroll-timeline-no-fallback)
- `multiple-webgl-contexts` Multiple WebGL contexts — [smooth/multiple-webgl-contexts](https://void-design.vercel.app/rules/smooth/multiple-webgl-contexts)

Detected by `void smooth` and `void audit`. Explain it in a terminal: `void rules smooth/will-change-overuse`
