Hello, I'm trying to get the glassmorphism effect inside my html text control but I'm not getting it.
I can get a rectangle with opacity as per code:
"<div
style='margin:1px;
width:"& Self.Width-25 &"px;
height:"& Self.Height-35 &"px;
background-color:rgba(0, 0, 0, 0.25);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
border-radius:16px'>
</div>"
But I would like to get the effect similar to this site:Glassmorphism CSS Effect Generator - Glass CSS
for it i add this propries in my code:
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
But I didn't get the expected return, in fact nothing changed.
Thanks!