xxxxxxxxxx
1
<section class="intro">
2
<div class="bg-image h-100" style="background-image: url('https://mdbootstrap.com/img/Photos/new-templates/tables/img1.jpg');">
3
<div class="mask d-flex align-items-center h-100" style="background-color: rgba(0,0,0,.35);">
4
<div class="container">
5
<div class="row justify-content-center">
6
<div class="col-12">
7
<div class="table-responsive bg-white" data-mdb-perfect-scrollbar="true" style="position: relative; height: 445px;">
8
<table class="table">
9
<thead>
10
<tr>
11
<th scope="col">EMPLOYEES</th>
12
<th scope="col">POSITION</th>
13
<th scope="col">START DATE</th>
14
<th scope="col">LAST ACTIVITY</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" style="color: #666666;">Tiger Nixon</th>
24
<td>System Architect</td>
25
<td>2011/04/25</td>
26
<td>2021/03/08</td>
27
<td>tnixon12@example.com</td>
28
<td>61</td>
29
<td>Edinburgh</td>
30
<td>$320,800</td>
31
</tr>
32
<tr>
33
<th scope="row" style="color: #666666;">Sonya Frost</th>
34
<td>Software Engineer</td>
35
<td>2008/12/13</td>
36
<td>2021/03/08</td>
37
<td>sfrost34@example.com</td>
38
<td>23</td>
39
<td>Edinburgh</td>
40
<td>$103,600</td>
41
</tr>
42
<tr>
43
<th scope="row" style="color: #666666;">Jena Gaines</th>
44
<td>Office Manager</td>
45
<td>2008/12/19</td>
46
<td>2021/03/08</td>
47
<td>jgaines75@example.com</td>
48
<td>30</td>
49
<td>London</td>
50
<td>$90,560</td>
51
</tr>
52
<tr>
53
<th scope="row" style="color: #666666;">Quinn Flynn</th>
54
<td>Support Lead</td>
55
<td>2013/03/03</td>
56
<td>2021/03/08</td>
57
<td>qflyn09@example.com</td>
58
<td>22</td>
59
<td>Edinburgh</td>
60
<td>$342,000</td>
61
</tr>
62
<tr>
63
<th scope="row" style="color: #666666;">Charde Marshall</th>
64
<td>Regional Director</td>
65
<td>2008/10/16</td>
66
<td>2021/03/08</td>
67
<td>cmarshall28@example.com</td>
68
<td>36</td>
69
<td>San Francisco</td>
70
<td>$470,600</td>
71
</tr>
72
<tr>
73
<th scope="row" style="color: #666666;">Haley Kennedy</th>
74
<td>Senior Marketing Designer</td>
75
<td>2012/12/18</td>
76
<td>2021/03/08</td>
77
<td>hkennedy63@example.com</td>
78
<td>43</td>
79
<td>London</td>
80
<td>$313,500</td>
81
</tr>
82
<tr>
83
<th scope="row" style="color: #666666;">Tatyana Fitzpatrick</th>
84
<td>Regional Director</td>
85
<td>2010/03/17</td>
86
<td>2021/03/08</td>
87
<td>tfitzpatrick00@example.com</td>
88
<td>19</td>
89
<td>Warsaw</td>
90
<td>$385,750</td>
91
</tr>
92
<tr>
93
<th scope="row" style="color: #666666;">Jason Cox</th>
94
<td>Web Developer</td>
95
<td>2017/10/16</td>
96
<td>2021/03/08</td>
97
<td>jcox96@example.com</td>
98
<td>32</td>
99
<td>New York</td>
100
<td>$390,400</td>
101
</tr>
102
<tr>
103
<th scope="row" style="color: #666666;">Christian Perkins</th>
104
<td>Sale Specialist</td>
105
<td>2013/12/18</td>
106
<td>2021/03/08</td>
107
<td>cperkins10@example.com</td>
108
<td>40</td>
109
<td>Paris</td>
110
<td>$240,800</td>
111
</tr>
112
<tr>
113
<th scope="row" style="color: #666666;">Emily Wheeler</th>
114
<td>Junior Marketing Analyst</td>
115
<td>2020/03/17</td>
116
<td>2021/03/08</td>
117
<td>ewheeler07@example.com</td>
118
<td>20</td>
119
<td>New York</td>
120
<td>$85,620</td>
121
</tr>
122
</tbody>
123
</table>
124
</div>
125
</div>
126
</div>
127
</div>
128
</div>
129
</div>
130
</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
min-width: 200px;
13
max-width: 200px;
14
}
15
16
tbody td {
17
font-weight: 500;
18
color: #999999;
19
}
1
1
Console errors: 0