flexbox_flex-0-1-0-ref.html (559B)
1 <!DOCTYPE html> 2 <title>flexbox | flex: 0 1 0</title> 3 <link rel="author" href="http://opera.com" title="Opera Software"> 4 <style> 5 div { 6 background: blue; 7 margin: 1em 0; 8 border: 1px solid black; 9 height: 8em; 10 width: 40em; 11 } 12 span { 13 background: white; 14 margin: 1em 0; 15 height: 6em; 16 display: inline-block; 17 } 18 span:nth-child(1) {background: yellow;} 19 span:nth-child(2) {background: pink;} 20 span:nth-child(3) {background: lightblue;} 21 span:nth-child(4) {background: grey;} 22 </style> 23 24 <div> 25 <span>one</span><span>two</span><span>three</span><span>four</span> 26 </div>