gap-003-lr.html (1001B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Flexbox Test: gap - lr rows and columns</title> 4 <link rel="author" title="Adam Argyle" href="mailto:argyle@google.com"> 5 <link rel="help" href="https://www.w3.org/TR/css-grid-1/#gutters"> 6 <link rel="help" href="https://www.w3.org/TR/css-align-3/#column-row-gap"> 7 <link rel="help" href="https://www.w3.org/TR/css-align-3/#gap-legacy"> 8 <link rel="match" href="gap-003-lr-ref.html"> 9 <meta name="assert" content="The 'gap' property enables putting space exclusively between items"> 10 <style> 11 body { 12 writing-mode: vertical-lr; 13 } 14 15 section { 16 background-color: green; 17 block-size: 100px; 18 display: flex; 19 gap: 20px; 20 flex-wrap: wrap; 21 flex-direction: column; 22 } 23 section > div{ 24 background-color: grey; 25 width: calc(50% - 10px); 26 } 27 </style> 28 <body> 29 <p>Test passes if there are <strong> green lines between boxes</strong>.</p> 30 <section> 31 <div></div> 32 <div></div> 33 <div></div> 34 <div></div> 35 </section> 36 </body>