ladybird/Tests/LibWeb/Layout/input/flex/flex-container-avoids-float-intrusions.html
Jelle Raaijmakers b6732240c7 LibWeb: Avoid float intrusions for BFCs, FFCs and GFCs
We were only avoiding float intrusions for BFCs, but FFCs and GFCs
should also accommodate for any floats present.

Work towards #4136.
2025-07-28 12:13:06 +02:00

14 lines
218 B
HTML

<!DOCTYPE html>
<style>
#a {
background: green;
float: left;
height: 100px;
width: 100px;
}
#b {
background: red;
display: flex;
height: 50px;
}
</style><div id="a"></div><div id="b"></div>