gap-004-ltr-ref.html (637B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Flexbox Test: gap - intrinsic 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: inline-flex; 10 } 11 section > div{ 12 background-color: grey; 13 color: white; 14 } 15 section > div:not(:last-of-type) { 16 margin-inline-end: 20px; 17 } 18 </style> 19 <body> 20 <p>Test passes if there are <strong> green lines between boxes</strong>.</p> 21 <section> 22 <div>Black Panther</div> 23 <div>Wonder Woman</div> 24 <div>Storm</div> 25 <div>Flash</div> 26 </section> 27 </body>