LadybirdBrowser/ladybird

Float layout issue on https://migueldemoura.com

awesomekling opened this issue · 0 comments

Article dates are not lining up with article names:

image

Simplified reduction:

<!doctype html><style>
    * { outline: 1px solid black; }
    body {
        width: 300px;
    }
    .float {
        float: left;
        width: 50px;
        height: 20px;
        background: orange;
    }
    .nonfloat {
        width: 100px;
        height: 50px;
        background: cyan;
    }
</style><body><article><div class="float"></div><div class="nonfloat"></div></article><article><div class="float"></div><div class="nonfloat"></div></article>