Problem Statement
Do CSS filters affect performance?
Explanation
Yes, filters like blur or brightness are GPU-intensive. Overusing them can slow rendering, especially on low-end devices. Use them sparingly and prefer optimized images when possible.
Code Solution
SolutionRead Only
img:hover { filter: brightness(1.2); }Practice Sets
This question appears in the following practice sets:
