File: flexbox-mbp-horiz-004.xhtml

package info (click to toggle)
thunderbird 1%3A115.16.0esr-1~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,476,252 kB
  • sloc: cpp: 6,972,150; javascript: 5,209,211; ansic: 3,507,222; python: 1,137,609; asm: 432,531; xml: 205,149; java: 175,761; sh: 116,485; makefile: 22,152; perl: 13,971; objc: 12,561; yacc: 4,583; pascal: 2,840; lex: 1,720; ruby: 1,075; exp: 762; sql: 666; awk: 580; php: 436; lisp: 430; sed: 70; csh: 10
file content (88 lines) | stat: -rw-r--r-- 3,193 bytes parent folder | download | duplicates (35)
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<!-- Testcase with percent-valued padding and/or margin on flex items.
     The spec allows these to be resolved against the flex container's
     inline size (regardless of which axis the percent padding/margin is in).
-->
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title>CSS Test: Testing percent-valued padding and margin on flex items</title>
    <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"/>
    <link rel="help" href="https://www.w3.org/TR/css-flexbox-1/#item-margins"/>
    <link rel="match" href="flexbox-mbp-horiz-004-ref.xhtml"/>
    <style>
      div.flexbox {
        width: 200px;
        display: flex;
        margin-bottom: 2px;
        border: 1px dotted black;
      }
      div.height50 { height: 50px; }

      .marginA  { margin: 10%  8%  6%  4%; }
      .marginB  { margin:  8% 10% 12% 14%; }
      .paddingA { padding: 8%  6%  4%  2%; }
      .paddingB { padding: 6%  8% 10% 12%; }

      div.child1 {
        flex: none;
        width: 10px;
        height: 10px;
        background: lightgreen;
      }
      div.child2 {
        flex: none;
        width: 10px;
        height: 10px;
        background: purple;
      }

      div.filler {
        /* Filler-div to fill up content-box and make padding easier to see. */
        height: 10px;
        width: 100%;
        background: lightgrey;
      }

    </style>
  </head>
  <body>
    <!-- Flex container is auto-height - this shouldn't impact percent
         margin/padding resolution, since they resolve against container's
         inline-size, i.e. its width in this case. -->
    <div class="flexbox"
         ><div class="child1 paddingA"><div class="filler"/></div
         ><div class="child2 paddingB"><div class="filler"/></div
         ><div class="child1 marginA"></div
         ><div class="child2 marginB"></div
    ></div>

    <!-- Flex container has height: 50px - again, this shouldn't impact percent
         margin/padding resolution, since they resolve against container's
         inline-size, i.e. its width in this case. -->
    <div class="flexbox height50"
         ><div class="child1 paddingA"><div class="filler"/></div
         ><div class="child2 paddingB"><div class="filler"/></div
         ><div class="child1 marginA"></div
         ><div class="child2 marginB"></div
    ></div>

    <!-- ...and now with align-items: flex-end, so we can see the margin-bottom
         in action -->
    <div class="flexbox height50" style="align-items: flex-end"
         ><div class="child1 paddingA"><div class="filler"/></div
         ><div class="child2 paddingB"><div class="filler"/></div
         ><div class="child1 marginA"></div
         ><div class="child2 marginB"></div
    ></div>

    <!-- ...and finally, with margin and padding applied to the same items -->
    <div class="flexbox height50"
         ><div class="child1 paddingA marginA"><div class="filler"/></div
         ><div class="child2 paddingB marginB"><div class="filler"/></div
    ></div>
  </body>
</html>