Answer
The backdrop-filter property applies filter effects to content behind an element. β’ The effect is visible through transparent or partly transparent areas. β’ It filters the backdrop rather than the elementβs own contents. β’ Readable contrast must remain sufficient over changing backgrounds.
💡 Simple Example
.glass {
background: rgb(255 255 255 / .2);
backdrop-filter: blur(12px);
}
⚡ Quick Revision
backdrop-filter changes what is seen through an element.