blob: 3093a67bc2eed3943ee36ef408190e65a01be592 (
plain)
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
|
<!DOCTYPE html>
<meta charset="utf-8">
<script>
document.addEventListener("DOMContentLoaded", () => {
SpecialPowers.wrap(window).printPreview()?.close();
})
</script>
<style>
@page {
/* Default reftest-paged page size: */
size: 5in 3in;
margin: 0.5in; /* This leaves 2in of height for content */
}
body { margin: 0; }
table {
border-collapse: collapse;
border: 5px solid black;
}
th {
height: 0.5in;
border-bottom: 5px solid green;
}
td {
height: 1in;
width: 2in;
border-bottom: 5px solid orange;
}
.float { float: left; }
.clear { clear: both; }
</style>
<div class="float">
<table>
<thead>
<tr><th></th></tr>
</thead>
<tbody>
<tr><td></td></tr>
<tr><td></td></tr>
</tbody>
</table>
</div>
<div class="clear"></div>
|