flexbox_flex-0-N-N-shrink-ref.html (545B)
1 <!DOCTYPE html> 2 <title>flexbox | flex: 0 N N | shrinking</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: 12em; 11 } 12 span { 13 background: yellow; 14 margin: 1em 0; 15 width: 3em; 16 height: 6em; 17 display: inline-block; 18 } 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>