答案 0 :(得分:1)
由于您未提供任何代码,因此这对您有帮助。
您可以使用css中的filter: blur(13px);
制作带有模糊背景的div,并且内容不能位于模糊div中,因此我们将使用兄弟元素,而不是像这样
body {
background: url('https://www.w3schools.com/html/img_girl.jpg') no-repeat center center fixed;
background-size: cover;
}
.blur {
background: url('https://www.w3schools.com/html/img_girl.jpg') no-repeat center center fixed;
background-size: cover;
overflow: hidden;
filter: blur(13px);
position: absolute;
height: 300px;
top: -50px;
left: -50px;
right: -50px;
bottom: -50px;
}
.widget {
border-top: 2px solid rgba(255, 255, 255, .5);
border-bottom: 2px solid rgba(255, 255, 255, .5);
height: 200px;
width: 100%;
overflow: hidden;
}
.center {
position: absolute;
margin: auto;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.text h1 {
text-align: center;
color: #ffffff;
margin-top: 57px;
font-family: 'Lora', serif;
font-weight: 700;
font-size: 38px;
}
<div class="widget center">
<div class="blur"></div>
<div class="text center">
<h1 class="">I am blurred div</h1>
</div>
</div>