-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path7_table.html
More file actions
57 lines (52 loc) · 1.09 KB
/
7_table.html
File metadata and controls
57 lines (52 loc) · 1.09 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Q.7 Styled Table</title>
<style>
table {
border: 2px solid #333;
width: 600px;
height: 550px;
border-collapse: collapse;
}
th,
td {
border: 2px solid #333;
padding: 10px;
text-align: center;
}
.classA {
background-color: #ffcc00;
color: #990000;
}
.classB {
background-color: #66ccff;
color: #003366;
}
.classC {
background-color: #99ff99;
color: #006600;
text-transform: uppercase;
}
.classD {
background-color: #ff9999;
color: #cc0000;
text-transform: uppercase;
}
</style>
</head>
<body>
<table>
<tr>
<th class="classA">Class A</th>
<th class="classB">Class B</th>
</tr>
<tr>
<td class="classC">Class C</td>
<td class="classD">Class D</td>
</tr>
</table>
</body>
</html>