Answer
CSS filters apply graphical effects to an elementβs rendered output. β’ Filter functions include blur, brightness, contrast, grayscale, hue-rotate, and drop-shadow. β’ Several filter functions can be applied in sequence. β’ Filters may create a stacking context and can increase rendering cost.
💡 Simple Example
.photo {
filter: grayscale(1) contrast(1.15);
}
⚡ Quick Revision
filter applies a chain of graphical effects to rendered content.