Yes, it's possible to apply the backdrop-filter property to both a parent and its child elements in Webflow, but you need to understand how the CSS stacking and transparency context affects the visual result.
backdrop-filter Works
backdrop-filter applies to what's behind the element, not its content or its children.
backdrop-filter on a Parent Element
rgba(255,255,255,0.5)) to the parent.blur(10px) using custom CSS or a backdrop-filter CSS property via an embed.
backdrop-filter on Child Elements
backdrop-filter of a child will affect whatever is behind that child box, including:
backdrop-filter layers can impact rendering performance, especially on mobile devices.
backdrop-filter is not yet natively exposed.style tag in the Page Settings > Before </body> with your class names and CSS.
Example inline style:
.my-blur-parent {
backdrop-filter: blur(10px);
background-color: rgba(255,255,255,0.5);
}
.my-blur-child {
backdrop-filter: blur(5px);
background-color: rgba(255,255,255,0.3);
}
You can apply backdrop-filter to both parent and child elements in Webflow via custom CSS, as long as both elements have some level of background transparency and your layout supports it. The filters act separately and do not layer or combine across parent and child.