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