<!DOCTYPE html> <html><head><title>flexbox | floated item</title> <link href="http://opera.com" rel="author" title="Opera Software"> <link href="http://www.w3.org/TR/css-flexbox-1/#flex-containers" rel="help"> <link href="reference/flexbox_item-float-ref.htm" rel="match"> <style> body>div { background: black; margin: 1em; display: flex; } div div { background: #3366cc; margin: 2em; width: 2em; height: 2em; float: right; } </style> </head><body><div> <div></div> <div></div> <div></div> <div></div> </div> </body></html>