flexbox_object-ref.html (419B)
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 <style> 5 div { 6 background: #ffcc00; 7 justify-content: space-around; 8 display: flex; 9 } 10 div>* { 11 background: #3366cc; 12 margin: 0; 13 } 14 15 .clip { 16 overflow: clip; 17 } 18 </style> 19 20 <div> 21 <p class="clip">this is supposed to be a flex item</p> 22 <p>this is supposed to be a flex item</p> 23 </div>