About css

Hello everyone, I would like to achieve the effect of making the entire page's application and category boxes transparent or with a frosted glass texture. How should I set the CSS for this? This is how I've set it up, but it's not working. Could you please provide me with a successful code reference to look at?

/* /
body {
background-image: url("https://img.ptdream.net/o/ptdream-img/2023/08/28/64ec101ea6993.png");
background-size: 100% 100%;
background-repeat: no-repeat;
background-attachment: fixed;
/
/
}

.tile {
position: relative; /
使::before.tile/
overflow: hidden; /
.tile/
}

.tile::before {
content: "";
position: absolute; /
.tile/
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url("https://img.ptdream.net/o/ptdream-img/2023/08/28/64ec101ea6993.png");
background-size: cover; /
.tile/
backdrop-filter: blur(10px); /
使/
opacity: 0.7; /
/
z-index: -1; /
.tile*/
}
Was this page helpful?