flexbox_item-top-float.html (487B)
1 <!DOCTYPE html> 2 <title>flexbox | floated item</title> 3 <link rel="author" href="http://opera.com" title="Opera Software"> 4 <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-property"> 5 <link rel="match" href="flexbox_item-top-float-ref.html"> 6 <style> 7 div { 8 background: black; 9 margin: 1em; 10 width: 400px; 11 12 display: flex; 13 } 14 p { 15 background: #3366cc; 16 margin: 2em; 17 width: 2em; 18 height: 2em; 19 float: -o-top-corner; 20 } 21 </style> 22 23 <div> 24 <p></p> 25 <p></p> 26 <p></p> 27 <p></p> 28 </div>