CSS如何实现背景模糊类似磨砂玻璃的效果

.div{
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

backdrop-filter功能强大,这里只是展示了磨砂玻璃的效果,更多效果可以度娘搜索。