flexbox-gap-position-absolute-ref.html (510B)
1 <!DOCTYPE html> 2 <html> 3 <meta charset="utf-8"> 4 <title>CSS Flexible Box Layout Test Reference: Test flexbox intrinsic inline-size, gap, and absolute-positioned children</title> 5 <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com"> 6 <link rel="author" title="Mozilla" href="http://www.mozilla.org/"> 7 8 <style> 9 div { 10 display: inline-flex; 11 background: fuchsia; 12 } 13 </style> 14 15 <div> 16 <span>B</span> 17 <span style="width: 100px;"></span> 18 <span>C</span> 19 </div> 20 </html>