Problem Statement
Which property can create effects like blur or grayscale without editing images?
Explanation
The `filter` property applies graphical effects like blur, brightness, contrast, or grayscale directly in CSS without modifying the source image.
Code Solution
SolutionRead Only
img { filter: grayscale(100%); }Practice Sets
This question appears in the following practice sets:
