floats-aspect-ratio-001-ref.html (499B)
1 <!DOCTYPE html> 2 <title>CSS aspect-ratio reference: block formatting context with floats</title> 3 4 <div style="width: 200px; border: solid 1px; display: flow-root;"> 5 <div style="float: left; width: 50px; height: 50px; background: lime;"></div> 6 <div style="float: right; width: 50px; height: 50px; background: hotpink;"></div> 7 <div style="float: left; width: 160px; height: 50px; background: aqua;"></div> 8 <div style="float: right; width: 40px; height: 40px; background: orange;"></div> 9 </div>