mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
We were accidentally providing it with absolute Y-coordinates, messing up stacked floating boxes that would otherwise intrude on each other. Fixes #4160.
22 lines
273 B
HTML
22 lines
273 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
.a {
|
|
background: red;
|
|
height: 50px;
|
|
}
|
|
.b {
|
|
background: green;
|
|
}
|
|
.c {
|
|
background: blue;
|
|
}
|
|
.bug {
|
|
float: left;
|
|
height: 50px;
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
<div class="a"></div>
|
|
<div class="b bug"></div>
|
|
<div class="c bug"></div>
|