mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-21 23:50:06 +00:00
We were only avoiding float intrusions for BFCs, but FFCs and GFCs should also accommodate for any floats present. Work towards #4136.
14 lines
218 B
HTML
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>
|