Hello everyone.
I’m facing a CSS issue with custom code. I added a glass card design (with blur) and everything works fine while browsing the website on Android phones, but not on iOS phones.
The blur effect just doesn’t do anything on iOS.
Here is the code :
#glass3{
position: relative;
z-index: 1;
text-align: left;
border-radius: 5px;
background: rgb(255 255 255 / 2%);
backdrop-filter: blur(3px);
padding: 30px 30px 30px 30px;
overflow: hidden;
border-color: rgb(255 255 255 / 10%);
}
The website link :
https://4kin.bubbleapps.io/version-test/top_menu_test?p=Staking
So how can it be working on Android but not iPhone ?
Thanks for your help !