Files
ladybird/Tests/LibWeb/Layout/input/abspos-box-bottom-with-max-height.html
BenJilks bee42160c5 LibWeb: When solving abspos lengths, use min max constrained height
Solving using the unconstrained height, when solving for bottom, would
either leave a gap over overflow its container.
2024-07-10 19:41:12 +02:00

11 lines
157 B
HTML

<style>
div {
position: absolute;
background: red;
width: 100px;
height: 100px;
max-height: 50px;
bottom: 0px;
}
</style><div></div>