mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-22 08:00:45 +00:00
We were accidentally providing it with absolute Y-coordinates, messing up stacked floating boxes that would otherwise intrude on each other. Fixes #4160.
21 lines
273 B
HTML
21 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>
|