-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10_CSS_Tables.html
80 lines (79 loc) · 1.77 KB
/
10_CSS_Tables.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS TABLES</title>
<style>
body{
font-family: "Comic Sans MS", sans-serif;
}
table,th,td{
border-collapse: collapse;
font-size: 20px;
padding: 10px;
text-align: center;
}
table{
width: 100%;
}
th{
background-color: darkred;
color: white;
}
tr:nth-last-child(even){
background-color: lightseagreen;
}
tr:nth-last-child(odd){
background-color: coral;
}
th,td{
border-radius: 50px;
box-shadow: 0 0 15px black;
}
td:hover{
background-color: orangered;
color: white;
}
</style>
</head>
<body>
<!-- CUSTOM TABLE -->
<table id="custom">
<tr>
<th>Emp Name</th>
<th>Designation</th>
<th>Company</th>
</tr>
<tr>
<td>John Mayor</td>
<td>Software Engineer</td>
<td>Microsoft</td>
</tr>
<tr>
<td>Alex Ben</td>
<td>Software Engineer</td>
<td>Google</td>
</tr>
<tr>
<td>John</td>
<td>Software Engineer</td>
<td>Microsoft</td>
</tr>
<tr>
<td>Alex Ben</td>
<td>Software Engineer</td>
<td>Google</td>
</tr>
<tr>
<td>John</td>
<td>Software Engineer</td>
<td>Microsoft</td>
</tr>
<tr>
<td>Alex Ben</td>
<td>Software Engineer</td>
<td>Google</td>
</tr>
</table>
</body>
</html>