-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtest.html
More file actions
103 lines (91 loc) · 2.2 KB
/
Copy pathtest.html
File metadata and controls
103 lines (91 loc) · 2.2 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="Apex 0.1.36">
<title>Document</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
line-height: 1.6;
max-width: 800px;
margin: 2rem auto;
padding: 0 1rem;
color: #333;
}
pre { background: #f5f5f5; padding: 1rem; overflow-x: auto; }
code { background: #f0f0f0; padding: 0.2em 0.4em; border-radius: 3px; }
blockquote { border-left: 4px solid #ddd; margin: 0; padding-left: 1rem; color: #666; }
table { border-collapse: collapse; width: 100%%; }
th, td { border: 1px solid #ddd; padding: 0.5rem; }
th { background: #f5f5f5; }
.page-break { page-break-after: always; }
.callout { padding: 1rem; margin: 1rem 0; border-left: 4px solid; }
.callout-note { border-color: #3b82f6; background: #eff6ff; }
.callout-warning { border-color: #f59e0b; background: #fffbeb; }
.callout-tip { border-color: #10b981; background: #f0fdf4; }
.callout-danger { border-color: #ef4444; background: #fef2f2; }
ins { background: #d4fcbc; text-decoration: none; }
del { background: #fbb6c2; text-decoration: line-through; }
mark { background: #fff3cd; }
.critic.comment { background: #e7e7e7; color: #666; font-style: italic; }
</style>
</head>
<body>
<p>This table combines both rowspan and colspan features:</p>
<tableid="q4-results" class="performance-table">
<thead>
<tr>
<th>Department</th>
<th>Employee</th>
<th>Q1-Q2 Average</th>
<th>Q3</th>
<th>Q4</th>
<th>Overall</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="2">Engineering</td>
<td>Alice</td>
<td>93.5</td>
<td>94</td>
<td>96</td>
<td>94.25</td>
</tr>
<tr>
</tr>
<tr>
<td>Bob</td>
<td>89.0</td>
<td>87</td>
<td>91</td>
<td>89.00</td>
</tr>
<tr>
<td>Marketing</td>
<td>Charlie</td>
<td>92.0</td>
<td colspan="2">Absent</td>
<td>92.00</td>
</tr>
<tr>
<td rowspan="2">Sales</td>
<td>Diana</td>
<td>87.5</td>
<td>88</td>
<td>90</td>
<td>88.50</td>
</tr>
<tr>
<td>Eve</td>
<td>93.0</td>
<td>95</td>
<td>93</td>
<td>93.50</td>
</tr>
</tbody>
</table>
</body>
</html>