xxxxxxxxxx
1
<style>
2
.gradient-custom {
3
/* fallback for old browsers */
4
background: #a18cd1;
5
6
/* Chrome 10-25, Safari 5.1-6 */
7
background: -webkit-linear-gradient(
8
45deg,
9
rgba(29, 236, 197, 0.6),
10
rgba(91, 14, 214, 0.6) 100%
11
);
12
13
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
14
background: linear-gradient(
15
45deg,
16
rgba(29, 236, 197, 0.6),
17
rgba(91, 14, 214, 0.6) 100%
18
);
19
}
20
</style>
21
22
<!-- Background image -->
23
<div
24
class="bg-image"
25
style="
26
background-image: url('https://mdbootstrap.com/img/new/fluid/nature/011.jpg');
27
height: 100vh;
28
"
29
>
30
<div class="mask gradient-custom">
31
<div class="d-flex justify-content-center align-items-center h-100">
32
<h1 class="text-white mb-0">Page title</h1>
33
</div>
34
</div>
35
36
</div>
37
<!-- Background image -->
1
1
1
1
Console errors: 0