gap-001-ltr-ref.html (580B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Flexbox Test: gap - horizontal</title> 4 <link rel="author" title="Adam Argyle" href="mailto:argyle@google.com"> 5 <style> 6 section { 7 background-color: green; 8 block-size: 100px; 9 display: flex; 10 } 11 section > div{ 12 background-color: grey; 13 flex: 1 1 auto; 14 } 15 section > div:not(:first-child) { 16 margin-inline-start: 20px; 17 } 18 </style> 19 <body> 20 <p>Test passes if there is <strong>a green vertical line between boxes</strong>.</p> 21 <section> 22 <div></div> 23 <div></div> 24 <div></div> 25 </section> 26 </body>