flexbox_align-items-stretch-2.html (569B)
1 <!DOCTYPE html> 2 <title>flexbox | align-items: stretch</title> 3 <link rel="author" href="http://opera.com" title="Opera Software"> 4 <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#align-items-property"> 5 <link rel="match" href="flexbox_align-items-stretch-2-ref.html"> 6 <style> 7 div { 8 background: black; 9 margin: 1em 0; 10 width: 30em; 11 height: 6em; 12 13 display: flex; 14 align-items: stretch; 15 } 16 span { 17 width: 8em; 18 display: inline-block; 19 20 flex: none; 21 } 22 span:nth-child(1) { 23 margin-top: 6em; 24 } 25 </style> 26 27 <div> 28 <span>PASS</span> 29 <span></span> 30 <span>x</span> 31 </div>