flexbox_direction-column.html (583B)
1 <!DOCTYPE html> 2 <title>flexbox | flex-direction: column</title> 3 <link rel="author" href="http://opera.com" title="Opera Software"> 4 <link rel="help" 5 href="http://www.w3.org/TR/css-flexbox-1/#flex-direction-property"> 6 <link rel="match" href="flexbox_direction-column-ref.html"> 7 <style> 8 div { 9 background: blue; 10 margin: 1em 0; 11 border: 1px solid black; 12 13 display: flex; 14 flex-direction: column; 15 } 16 span { 17 background: white; 18 margin: 1em; 19 width: 8em; 20 display: inline-block; 21 } 22 </style> 23 24 <div> 25 <span>filler</span> 26 <span>filler</span> 27 <span>filler</span> 28 <span>filler</span> 29 </div>