flexbox_nested-flex.html (466B)
1 <!DOCTYPE html> 2 <title>flexbox | nested flexcontainer</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-containers"> 6 <link rel="match" href="flexbox_generated-flex-ref.html"> 7 <style> 8 div { 9 background: #3366cc; 10 border: 1px solid black; 11 display: flex; 12 } 13 p { 14 background: yellow; 15 margin: 1em; 16 width: 200px; 17 height: 2em; 18 display: flex; 19 } 20 </style> 21 22 <div> 23 <p>xxx</p> 24 </div>