Does anyone know how to grey out a floating group?

Hey guys, kind of having trouble to make floating group to have this kind of effect,( background grey out and focus on the floating group), does anyone know how to achieve this?

Best
Max

We use this:

#Blur {
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
}

Then add the ID to group with “no background” and “100% opacity”. Display that group above the elements you want to appear out of focus.

1 Like

Thank you so much, I will test it out!

This topic was automatically closed after 70 days. New replies are no longer allowed.