xxxxxxxxxx
1
<section class="intro">
2
<div class="bg-image h-100" style="background-image: url(https://mdbootstrap.com/img/Photos/new-templates/glassmorphism-article/img7.jpg);">
3
<div class="mask d-flex align-items-center h-100">
4
<div class="container">
5
<div class="row justify-content-center">
6
<div class="col-12">
7
<div class="card mask-custom">
8
<div class="card-body">
9
<div class="table-responsive">
10
<table class="table table-borderless text-white mb-0">
11
<thead>
12
<tr>
13
<th scope="col">EMPLOYEES</th>
14
<th scope="col">POSITION</th>
15
<th scope="col">CONTACTS</th>
16
<th scope="col">AGE</th>
17
<th scope="col">ADDRESS</th>
18
<th scope="col">SALARY</th>
19
</tr>
20
</thead>
21
<tbody>
22
<tr>
23
<th scope="row">Tiger Nixon</th>
24
<td>System Architect</td>
25
<td>tnixon12@example.com</td>
26
<td>61</td>
27
<td>Edinburgh</td>
28
<td>$320,800</td>
29
</tr>
30
<tr>
31
<th scope="row">Sonya Frost</th>
32
<td>Software Engineer</td>
33
<td>sfrost34@example.com</td>
34
<td>23</td>
35
<td>Edinburgh</td>
36
<td>$103,600</td>
37
</tr>
38
<tr>
39
<th scope="row">Jena Gaines</th>
40
<td>Office Manager</td>
41
<td>jgaines75@example.com</td>
42
<td>30</td>
43
<td>London</td>
44
<td>$90,560</td>
45
</tr>
46
<tr>
47
<th scope="row">Quinn Flynn</th>
48
<td>Support Lead</td>
49
<td>qflyn09@example.com</td>
50
<td>22</td>
51
<td>Edinburgh</td>
52
<td>$342,000</td>
53
</tr>
54
<tr>
55
<th scope="row">Charde Marshall</th>
56
<td>Regional Director</td>
57
<td>cmarshall28@example.com</td>
58
<td>36</td>
59
<td>San Francisco</td>
60
<td>$470,600</td>
61
</tr>
62
<tr>
63
<th scope="row">Haley Kennedy</th>
64
<td>Senior Marketing Designer</td>
65
<td>hkennedy63@example.com</td>
66
<td>43</td>
67
<td>London</td>
68
<td>$313,500</td>
69
</tr>
70
<tr>
71
<th scope="row">Tatyana Fitzpatrick</th>
72
<td>Regional Director</td>
73
<td>tfitzpatrick00@example.com</td>
74
<td>19</td>
75
<td>Warsaw</td>
76
<td>$385,750</td>
77
</tr>
78
</tbody>
79
</table>
80
</div>
81
</div>
82
</div>
83
</div>
84
</div>
85
</div>
86
</div>
87
</div>
88
</section>
xxxxxxxxxx
1
html,
2
body,
3
.intro {
4
height: 100%;
5
}
6
7
table td,
8
table th {
9
text-overflow: ellipsis;
10
white-space: nowrap;
11
overflow: hidden;
12
}
13
14
.mask-custom {
15
background: rgba(24, 24, 16, .2);
16
border-radius: 2em;
17
backdrop-filter: blur(25px);
18
border: 2px solid rgba(255, 255, 255, 0.05);
19
background-clip: padding-box;
20
box-shadow: 10px 10px 10px rgba(46, 54, 68, 0.03);
21
}
1
1
Console errors: 0