flex-item-vertical-align-ref.html (355B)
1 <!DOCTYPE html> 2 <link href="../support/flexbox.css" rel="stylesheet"> 3 4 <style> 5 .flexbox { 6 background-color: lightgrey; 7 } 8 </style> 9 10 <div class='flexbox'> 11 <!-- flex item: block child --> 12 <div>block</div> 13 <!-- flex item: anonymous block box around inline content --> 14 anonymous item 2 15 <!-- flex item: inline child --> 16 <span>item 3</span> 17 </div>