xxxxxxxxxx
1
<header>
2
3
<section>
4
<div class="bg-image h-100" style="background-image: url(https://mdbootstrap.com/img/Photos/new-templates/glassmorphism-article/img2.jpg); ">
5
<div class="mask mask-custom d-flex align-items-center h-100">
6
<div class="container">
7
<div class="row justify-content-center text-center text-white">
8
<div class="col-12">
9
<h1>This is the glassmorphism effect on the background</h1>
10
</div>
11
</div>
12
</div>
13
</div>
14
</div>
15
</section>
16
17
</header>
xxxxxxxxxx
1
html,
2
body,
3
header,
4
header section {
5
height: 100%;
6
}
7
8
.mask-custom {
9
backdrop-filter: blur(40px);
10
background: rgba(0,0,0,.1);
11
}
1
1
Console errors: 0