flexbox_wrap-long.html (610B)
1 <!DOCTYPE html> 2 <title>flexbox | flex-wrap: wrap / long items</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-wrap-property"> 6 <link rel="match" href="flexbox_wrap-long-ref.html"> 7 <style> 8 div { 9 background: blue; 10 margin: 1em 0; 11 border: 1px solid black; 12 width: 20em; 13 14 display: flex; 15 flex-wrap: wrap; 16 } 17 span { 18 background: white; 19 margin: 1em; 20 width: 8em; 21 display: inline-block; 22 } 23 span:first-child { 24 width: 24em; 25 } 26 </style> 27 28 <div> 29 <span>one</span> 30 <span>two</span> 31 <span>three</span> 32 <span>four</span> 33 </div>