File: dimensions-012-print.html

package info (click to toggle)
thunderbird 1%3A143.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 4,703,968 kB
  • sloc: cpp: 7,770,492; javascript: 5,943,842; ansic: 3,918,754; python: 1,418,263; xml: 653,354; asm: 474,045; java: 183,079; sh: 111,238; makefile: 20,410; perl: 14,359; objc: 13,059; yacc: 4,583; pascal: 3,405; lex: 1,720; ruby: 999; exp: 762; sql: 715; awk: 580; php: 436; lisp: 430; sed: 69; csh: 10
file content (83 lines) | stat: -rw-r--r-- 2,468 bytes parent folder | download | duplicates (8)
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
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-page-3/#margin-dimension">
<meta name="assert" content="Margins around margin boxes.">
<meta name="flags" content="ahem">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
<link rel="match" href="dimensions-012-print-ref.html">
<style>
  :root {
    print-color-adjust: exact;
  }
  @page {
    margin: 4em 5em 8em 7em;
    width: 20em;
    height: 16em;
    font: 16px/1 Ahem;
    white-space: pre-wrap;

    @top-left-corner {
      vertical-align: top;
      text-align: left;
      margin: auto;
      width: fit-content;
      height: fit-content;
      content: "x x\a\a0x\ax x";
      background: pink;
    }

    /* Top-left has a min content width of 3em. Top-right has an inner min
       content width of 2em. Additionally, it has 25% margins on each side. In
       the horizontal direction that means 20em*0.25 = 5em on each side. Outer
       min content width for top-right becomes 12em.

       Available space is 20em. Unused space is 5em. Total flex is 15. Left flex
       is 3. Right flex is 12.

       Left outer width: 3em + 5em*3/15 = 4em
       Right outer width: 12em + 5em*12/15 = 16em */
    @top-left {
      vertical-align: top;
      text-align: left;
      content: "xxx";
      background: hotpink;
    }
    @top-right {
      vertical-align: top;
      text-align: left;
      margin: 25%;
      content: "xx";
      background: yellow;
    }

    /* Right-top has an inner min content height of 2em. It's margin-top is 1em,
       so the outer min content height becomes 3em. Right-bottom has an inner
       min content height of 1em. Additionally, it has 25% margins on each side.
       In the vertical direction that means 16em*0.25 = 4em on each side. Outer
       min content height for right-bottom becomes 9em.

       Available space is 16em. Unused space is 4em. Total flex is 12. Top flex
       is 3. Bottom flex is 9.

       Top outer height: 3em + 4em*3/12 = 4em
       Bottom outer height: 9em + 4em*9/12 = 12em */
    @right-top {
      vertical-align: top;
      text-align: left;
      margin-top: 1em;
      content: "x\ax";
      background: hotpink;
    }
    @right-bottom {
      vertical-align: top;
      text-align: left;
      margin: 25%;
      content: "x";
      background: yellow;
    }
  }

  body {
    background: blue;
  }
</style>