doc_flexbox_text_nodes.html (399B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <style> 4 .container { 5 width: 400px; 6 display: flex; 7 } 8 .container div { 9 flex-basis: 100px; 10 flex-shrink: 0; 11 background: #f06; 12 align-self: stretch; 13 } 14 </style> 15 <div class="container"> 16 A text node will be wrapped into an anonymous block container 17 <div></div> 18 Here is yet another text node 19 </div> 20 <div class="container single-child">short text</div>