xxxxxxxxxx
1
<section class="intro">
2
<div class="gradient-custom-2 h-100">
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="table-responsive">
8
<table class="table table-dark table-bordered mb-0">
9
<thead>
10
<tr>
11
<th scope="col">EMPLOYEES</th>
12
<th scope="col">POSITION</th>
13
<th scope="col">CONTACTS</th>
14
<th scope="col">AGE</th>
15
<th scope="col">ADDRESS</th>
16
<th scope="col">SALARY</th>
17
</tr>
18
</thead>
19
<tbody>
20
<tr>
21
<th scope="row">Tiger Nixon</th>
22
<td>System Architect</td>
23
<td>tnixon12@example.com</td>
24
<td>61</td>
25
<td>Edinburgh</td>
26
<td>$320,800</td>
27
</tr>
28
<tr>
29
<th scope="row">Sonya Frost</th>
30
<td>Software Engineer</td>
31
<td>sfrost34@example.com</td>
32
<td>23</td>
33
<td>Edinburgh</td>
34
<td>$103,600</td>
35
</tr>
36
<tr>
37
<th scope="row">Jena Gaines</th>
38
<td>Office Manager</td>
39
<td>jgaines75@example.com</td>
40
<td>30</td>
41
<td>London</td>
42
<td>$90,560</td>
43
</tr>
44
<tr>
45
<th scope="row">Quinn Flynn</th>
46
<td>Support Lead</td>
47
<td>qflyn09@example.com</td>
48
<td>22</td>
49
<td>Edinburgh</td>
50
<td>$342,000</td>
51
</tr>
52
<tr>
53
<th scope="row">Charde Marshall</th>
54
<td>Regional Director</td>
55
<td>cmarshall28@example.com</td>
56
<td>36</td>
57
<td>San Francisco</td>
58
<td>$470,600</td>
59
</tr>
60
<tr>
61
<th scope="row">Haley Kennedy</th>
62
<td>Senior Marketing Designer</td>
63
<td>hkennedy63@example.com</td>
64
<td>43</td>
65
<td>London</td>
66
<td>$313,500</td>
67
</tr>
68
<tr>
69
<th scope="row">Tatyana Fitzpatrick</th>
70
<td>Regional Director</td>
71
<td>tfitzpatrick00@example.com</td>
72
<td>19</td>
73
<td>Warsaw</td>
74
<td>$385,750</td>
75
</tr>
76
</tbody>
77
</table>
78
</div>
79
</div>
80
</div>
81
</div>
82
</div>
83
</div>
84
</section>
xxxxxxxxxx
1
html,
2
body,
3
.intro {
4
height: 100%;
5
}
6
7
.gradient-custom-2 {
8
/* fallback for old browsers */
9
background: #6a11cb;
10
11
/* Chrome 10-25, Safari 5.1-6 */
12
background: -webkit-linear-gradient(to top, rgba(106, 17, 203, 1), rgba(37, 117, 252, 1));
13
14
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
15
background: linear-gradient(to top, rgba(106, 17, 203, 1), rgba(37, 117, 252, 1))
16
}
17
18
table td,
19
table th {
20
text-overflow: ellipsis;
21
white-space: nowrap;
22
overflow: hidden;
23
}
24
25
thead th,
26
tbody th {
27
color: #fff;
28
}
29
30
tbody td {
31
font-weight: 500;
32
color: rgba(255,255,255,.65);
33
}
1
1
Console errors: 0