blob: 20b79f598778ca691f686d2c2148017484ace8ad (
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
|
<!DOCTYPE html>
<html class="reftest-paged">
<style>
#msub {
page-break-before: always;
}
mtable, mtr, mtd {
border: 1px solid;
}
</style>
<br>
<br>
<math display="block">
<mtable style="position: absolute;">
<mtr>
<mtd>
<mrow><mi>1</mi></mrow>
</mtd>
</mtr>
<mtr>
<mtd rowspan="0" style="font-size: 72px;">
<mrow id="msub">
<mi>2</mi>
</mrow>
</mtd>
<mtd rowspan="0">
<mtext>2</mtext>
<mspace height="100px"></mspace>
</mtd>
</mtr>
<mtr>
<mtd rowspan="0">
<mtext>3</mtext>
</mtd>
</mtr>
<mtr>
<mtd style="padding-bottom: 1000px;">
<mtext>4</mtext>
</mtd>
</mtr>
</mtable>
</math>
</html>
|