flexbox-baseline-nested-001-ref.html (610B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Reference: Baseline of nested flex containers with stretched textfield inside</title> 5 <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"> 6 <link rel="author" title="Mozilla" href="http://www.mozilla.org/"> 7 <meta charset="utf-8"> 8 <style> 9 .ib { 10 display: inline-block; 11 } 12 .innerFlex { 13 display: flex; 14 height: 200px; 15 } 16 </style> 17 </head> 18 <body> 19 abc 20 <div class="ib"> 21 <div class="innerFlex"> 22 <input value="def"> 23 </div> 24 </div> 25 </body> 26 </html>