I have a div.outer and inside a div.inner, both with position: absolute; and backdrop-filter: blur(8px);.
https://jsbin.com/nihakiqocu/1/edit?html,css,output
Safari (left) gives the desired result – both divs blur what's behind them.
Chrome (right), however, only applies the blur of div.outer:
I have a solution: adding another div inside div.outer and moving backdrop-filter: blur(8px); to that new div.
However, I would appreciate a solution that doesn't require changing the DOM from the first jsbin. Also, does anybody know what is causing this – is it a Chrome bug?
https://jsbin.com/rasudijame/1/edit?html,css,output
PS: it works on iOS's Chrome, but not on Android's Chrome and also not on Mac OS's Chrome

