mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-07 09:04:30 +00:00
Solving using the unconstrained height, when solving for bottom, would either leave a gap over overflow its container.
11 lines
157 B
HTML
11 lines
157 B
HTML
<style>
|
|
div {
|
|
position: absolute;
|
|
background: red;
|
|
width: 100px;
|
|
height: 100px;
|
|
max-height: 50px;
|
|
bottom: 0px;
|
|
}
|
|
</style><div></div>
|