flexbox_object.html (554B)
1 <!DOCTYPE html> 2 <title>flexbox | object fallback as a flex item</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/#justify-content-property"> 6 <link rel="match" href="flexbox_object-ref.html"> 7 <style> 8 div { 9 background: #ffcc00; 10 justify-content: space-around; 11 display: flex; 12 } 13 div>* { 14 background: #3366cc; 15 margin: 0; 16 } 17 18 object { 19 overflow: clip; 20 } 21 </style> 22 23 <div> 24 <object>this is supposed to be a flex item</object> 25 <p>this is supposed to be a flex item</p> 26 </div>