flexbox-definite-sizes-005-ref.html (621B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <title>CSS Test Reference</title> 4 <link rel="author" href="mailto:dholbert@mozilla.com" title="Daniel Holbert"> 5 <style> 6 .outer { 7 margin-bottom: 2px; 8 height: 60px; 9 } 10 .inner { 11 background: lime; 12 height: 100%; 13 } 14 </style> 15 <p>Test passes if you see four 60px-tall lime rows (with platform-appropriate scrollbars on the last one).</p> 16 17 <div class="outer"><div class="inner"></div></div> 18 <div class="outer"><div class="inner"></div></div> 19 <div class="outer"><div class="inner"></div></div> 20 <div class="outer" style="overflow: scroll"><div class="inner"></div></div>