gap-004-rl-ref.html (694B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Flexbox Test: gap - vertical RL intrinsic horizontal</title> 4 <link rel="author" title="Adam Argyle" href="mailto:argyle@google.com"> 5 <style> 6 body { 7 writing-mode: vertical-rl; 8 } 9 10 section { 11 background-color: green; 12 block-size: 100px; 13 display: inline-flex; 14 } 15 section > div{ 16 background-color: grey; 17 color: white; 18 } 19 section > div:not(:last-of-type) { 20 margin-inline-end: 20px; 21 } 22 </style> 23 <body> 24 <p>Test passes if there are <strong> green lines between boxes</strong>.</p> 25 <section> 26 <div>Black Panther</div> 27 <div>Wonder Woman</div> 28 <div>Storm</div> 29 <div>Flash</div> 30 </section> 31 </body>