如何创建带有透明文字的模糊div?
示例:
编辑:
我的代码:
body {
background: url('http://weknowyourdreams.com/images/garden/garden-09.jpg');
}
.box {
padding: 30px;
text-align: center;
font-weight: bold;
width: 500px;
font-size: 100px;
background-color:rgba(255,255,255,0.8);
filter: blur(7px);
}
<body>
<div class="box">
TEST
</div>
</body>