flexbox-single-column-1d.html (3213B)
1 <!DOCTYPE html> 2 <!-- Any copyright is dedicated to the Public Domain. 3 http://creativecommons.org/publicdomain/zero/1.0/ --> 4 <html> 5 <meta charset="utf-8"> 6 <title>CSS Flexbox Test: Fragmentation of fixed block-size single-line column-reverse flex container with flexible length flex items</title> 7 <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com"> 8 <link rel="author" title="Mozilla" href="http://www.mozilla.org/"> 9 <link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#pagination"> 10 <link rel="match" href="flexbox-single-column-1-ref.html"> 11 <meta name="assert" content="This test verifies fragmentation of flexible length flex items in a fixed block-size single-line column-reverse flex container, with various combinations of margin/border/padding, alignments, and row-gap."> 12 13 <style> 14 .multicol { 15 block-size: 50px; 16 inline-size: 190px; 17 column-width: 40px; 18 column-fill: auto; 19 column-gap: 10px; 20 border: 5px solid orange; 21 margin-block-end: 5px; /* Just to separate each sub-testcase visually. */ 22 } 23 .flexContainer { 24 display: flex; 25 flex-wrap: nowrap; 26 flex-direction: column-reverse; 27 background: gray; 28 /* border-width is 0 by default; some sub-testcases will increase it. */ 29 border: 0 solid lightgray; 30 block-size: 150px; 31 } 32 .border-padding { 33 border-block-width: 10px; 34 padding-block: 5px; 35 } 36 37 /* Note: flex items are in visual order as "CMYK": cyan, magenta, yellow, black. */ 38 footer { 39 background: cyan; 40 block-size: 50px; 41 flex-grow: 2; 42 } 43 article, nav, header { 44 inline-size: 30px; 45 } 46 article { 47 background: magenta; 48 block-size: 25px; 49 flex-grow: 1; 50 align-self: flex-start; 51 } 52 nav { 53 background: yellow; 54 block-size: 25px; 55 flex-grow: 1; 56 align-self: center; 57 } 58 header { 59 background: black; 60 block-size: 50px; 61 flex-grow: 2; 62 align-self: flex-end; 63 } 64 </style> 65 66 <body> 67 <!-- Basic one without any margin/border/padding. --> 68 <div class="multicol"> 69 <div class="flexContainer"> 70 <header></header><nav></nav><article></article><footer></footer> 71 </div> 72 </div> 73 74 <!-- Test a container with margin-block-start. --> 75 <div class="multicol"> 76 <div class="flexContainer" style="margin-block-start: 25px"> 77 <header></header><nav></nav><article></article><footer></footer> 78 </div> 79 </div> 80 81 <!-- Test a container not at the top of the column/page. --> 82 <div class="multicol"> 83 <div style="block-size: 25px"></div> 84 <div class="flexContainer"> 85 <header></header><nav></nav><article></article><footer></footer> 86 </div> 87 </div> 88 89 <!-- Test a container with border and padding. --> 90 <div class="multicol"> 91 <div class="flexContainer border-padding"> 92 <header></header><nav></nav><article></article><footer></footer> 93 </div> 94 </div> 95 96 <!-- Test a container with border, padding, and row-gap. --> 97 <div class="multicol"> 98 <div class="flexContainer border-padding" style="block-size: 165px; row-gap: 5px"> 99 <header></header><nav></nav><article></article><footer></footer> 100 </div> 101 </div> 102 </body> 103 </html>