1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:07:35 +00:00

LibWeb: Fix handling of max-content containing block for floating box

Fixes layout of page toolbar on Wikipedia.
This commit is contained in:
Andi Gallo 2023-08-13 02:23:29 +00:00 committed by Alexander Kalenik
parent 97ba1ff1f7
commit b6f9f4c28c
5 changed files with 94 additions and 16 deletions

View file

@ -0,0 +1,13 @@
<style>
.display_flex {
display: flex;
}
div {
float: left;
}
span {
float: left;
}
</style><div class="display_flex"><div><div><span>A</span><span>B</span></div></div></div>